Column Label not appearing in maint program

mwheat01

New Member
I am trying to manually set a label in a maint program by using AT. It show in char mode but not in .NET.

FORM
so_nbr side-label "SO#" colon 10
"Quantity" at 3
with frame a width 80 SIDE-LABELS.

The label for "Auantity" shows up fine in char but not in .NET. If I change the AT to COLON then I can see it. Does AT not work in .NET??
 
in order to display label/s w/o a field in NETUI
you must declare dummy variable/s
e.g:
Code:
def var L as character format "x(1)".
form
   so_nbr label "SO#" colon 10
   L  label "Qty" colon 10
  with frame  width 80 side-labels.
or, if you want to make your label/s dynamic:
Code:
def var L as character format "x(10)" extent 3.
def var Lon as logical.
assign
  L[1]="Qty"
  L[2]="UM"
  L[3]="Price".
form
  so_nbr label "SO#" colon 10
  L[1]  at 1 no-label
  L[2]  at 1 no-label
  L[3]  at 1 no-label
  with frame a width 80 side-labels.
Lon=yes.
repeat:
  if Lon then display L[1 for 3] with frame a.
  update so_nbr.
  ...
end.
 
Back
Top