Link to home
Start Free TrialLog in
Avatar of kzdown
kzdown

asked on

Number of created forms?

Hello,

does anyone know how can i get number of created forms in the App? For example, if i have 5 forms in my application, but i autocreate at startup only two, i would like to get this number programaticly. Ā 

Thanks
ASKER CERTIFIED SOLUTION
Avatar of Lukasz Zielinski
Lukasz Zielinski
Flag of Poland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Well, to get the ones auto created you could just look at the project source(Menu Project --> View Source). Anything with a Application.CreateForm(xxx) is an "auto created form". You can just put a variable increment if you really need too..