Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
How to close all active forms?
Message
General information
Forum:
Visual FoxPro
Category:
Other
Title:
How to close all active forms?
Miscellaneous
Thread ID:
01314968
Message ID:
01314968
Views:
56
I'm trying to find and close all active forms. the problem is during run time form names are not used also there may be several forms with the same name. What is the correc way of doing this?
LOCAL lnFormCount, k, dum

*-- get a active form count
lnFormCount = _screen.FormCount

*-- get non found getout
IF lnFormCount = 0
	RETURN
ENDIF

*-- close all forms
FOR k = lnFormCount TO 1 STEP -1
	 
	dum = ALLTRIM(_screen.Forms(k).name) + '.Release()'
	&dum
	
next
Next
Reply
Map
View

Click here to load this message in the networking platform