Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Releasing forms
Message
 
To
31/03/2000 21:03:58
General information
Forum:
Visual FoxPro
Category:
Forms & Form designer
Title:
Miscellaneous
Thread ID:
00353709
Message ID:
00353818
Views:
17
>>How do I instantly release forms (10) in my VFP desktop window?
>
>You can loop through them:
>
>
>for lnFOrm = _screen.formcount to 1
>    _screen.forms[lnForm].Release()
>endfor


Or even a little simpler;
FOR EACH oForm IN _SCREEN.Forms
   oForm.Release()
ENDFOR
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform