Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Close any open form before exit
Message
From
15/06/2004 12:48:35
 
 
To
15/06/2004 12:40:44
Sammy Derban
Ghana Telecom
Accra, Ghana
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00913951
Message ID:
00913954
Views:
15
You can check the _Screen FormCount property to see if any forms are open. If so, loop through them and release them.
IF _Screen.FormCount > 0
    FOR x = 1 TO _Screen.FormCount
       _Screen.Forms(x).Release
    ENDFOR
ENDIF
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform