I have a program :
Private lc_dummy
lc_dummy = "Hello"
DO FORM TESTFORM
READ EVENTS
The form does not recognize the variable lc_dummy.
I thought private variables are seen below the main program
where it is created. The code above works with:
PUBLIC lc_dummy
Thank you
EMC
Private lc_dummy
lc_dummy = "Hello"
DO FORM TESTFORM
READ EVENTS
The form does not recognize the variable lc_dummy.
I thought private variables are seen below the main program
where it is created. The code above works with:
PUBLIC lc_dummy
Thank you
EMC