Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
TopLevel Form Problem
Message
From
08/07/2003 11:59:29
 
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Miscellaneous
Thread ID:
00808026
Message ID:
00808047
Views:
16
This message has been marked as the solution to the initial question of the thread.
The oform object variable in your tmess procedure is local. When the read events statement is hit, oform has been already released due to the procedure end. This is why its only flashing.

you can create the object on the read events procedure level

do tmess
oform=create....
read events

or in tmess create the variable public

public oform
oform=create....

this will prohibit the object oform to be released before read events.

Giesbert
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform