
11-01-2004, 01:55 PM
|
|
Freshman
|
|
Join Date: Oct 2003
Posts: 48
|
|
Simple question (I think) {access unloaded forms}
|
Hey, so I made this procedure which should load all forms there is in the project, it goes like this:
Code:
Sub LoadAll()
Dim Frm As Form
For Each Frm In Forms
If (Frm.Tag <> frm_Menu.Tag) Then
Load Frm
frm_Menu.ProgressBar.Value = frm_Menu.ProgressBar.Value + 1
End If
Next
End Sub
I came into a conclusion that only loaded forms are in this 'Forms' gruop which doesn't really help me cause I want to load them =P
Is there a way to access all forms in the project, run through them all and load them one by one?
I'd appreciate any kind of help.
Thanks,
kedmyster.
|
Last edited by Kedmyster; 11-01-2004 at 02:27 PM.
|