This is my code. And the error in RED. What am i doing wrong here. Experts please help.
define temp-table tt
field tta as char
field ttb as char.
def var a as char.
def var b as char.
form a b with frame abcd.
on pf3 of frame abcd
do:
hide frame abcd.
for each tt:
disp tta ttb.
end.
end.
repeat:
a = "".
b = "".
update a b with frame abcd.
create tt.
assign tta = a
ttb = b.
end.
ERROR
None of the widgets used in the WAIT-FOR statement are in a state (such as
SENSITIVE) such that the specified event can occur. WAIT-FOR terminated. (4123)
All i want is the data to be displayed when F3 [pf3] function-key is pressed.
Please help.
define temp-table tt
field tta as char
field ttb as char.
def var a as char.
def var b as char.
form a b with frame abcd.
on pf3 of frame abcd
do:
hide frame abcd.
for each tt:
disp tta ttb.
end.
end.
repeat:
a = "".
b = "".
update a b with frame abcd.
create tt.
assign tta = a
ttb = b.
end.
ERROR
None of the widgets used in the WAIT-FOR statement are in a state (such as
SENSITIVE) such that the specified event can occur. WAIT-FOR terminated. (4123)
All i want is the data to be displayed when F3 [pf3] function-key is pressed.
Please help.