WE HAVE CALLED A MODELESS FORM FROM THE PRG
The code is :
PRIVATE m.n_item
m.n_item = 0
DO FORM XXX with A,B,C
IF m.n_item = 0
RETURN
ELSE
"FURTHER CODE"
ENDIF
The VARIABLE m.n_item is assigned a value in the forms Unload Method.The Form is modeless. but the Form executes only the init method hence the Value of variable remains 0 and "FURTHER CODE" is not executed.
Please give me some Solution.
Thanks In Advance
The code is :
PRIVATE m.n_item
m.n_item = 0
DO FORM XXX with A,B,C
IF m.n_item = 0
RETURN
ELSE
"FURTHER CODE"
ENDIF
The VARIABLE m.n_item is assigned a value in the forms Unload Method.The Form is modeless. but the Form executes only the init method hence the Value of variable remains 0 and "FURTHER CODE" is not executed.
Please give me some Solution.
Thanks In Advance