Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Checking to see if forms exist
Message
 
To
24/11/1998 09:52:27
Jim Rieck
Quicken Loans/Rock Financial/Title Sourc
Livonia, Michigan, United States
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00160898
Message ID:
00160908
Views:
23
Jim,

You can use the _SCREEN.FORMS() array to look through all of the open forms on the FoxPro desktop. Use something like:

FOR i = 1 to _SCREEN.FORMCOUNT
IF _SCREEN.FORMS(i).Caption="FormTitle" OR _SCREEN.FORMS(i).Name = "FormName"
&& Whatever you want to do here
ENDIF
ENDFOR

One Caveat. Undocked toolbars show up in the FORMS() array so you may also want to check to see if the _SCREEN.FORMS(i).BaseClass = "Form"

That's all folks!
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform