How is it that the following code :
def var sonbr as char.
form
sonbr
with frame a.
for each so_mstr where so_domain = "xyz" no-lock:
disp so_nbr @ sonbr with frame a.
end.
displays the field without pausing on the frame.
But the following code allows for pauses:
def var sonbr as char.
form
sonbr
with frame a.
for each so_mstr where so_domain = "xyz" no-lock:
disp so_nbr.
end.
def var sonbr as char.
form
sonbr
with frame a.
for each so_mstr where so_domain = "xyz" no-lock:
disp so_nbr @ sonbr with frame a.
end.
displays the field without pausing on the frame.
But the following code allows for pauses:
def var sonbr as char.
form
sonbr
with frame a.
for each so_mstr where so_domain = "xyz" no-lock:
disp so_nbr.
end.