aziz rasul Active member Local time Today, 17:45 Joined Jun 26, 2000 Messages 1,935 Jun 20, 2002 #1 How do I obtain a list of forms that are OPEN?
R Rich Guest Jun 20, 2002 #2 Try the function Harry posted here http://www.access-programmers.co.uk/forums/showthread.php?s=&threadid=30167
Try the function Harry posted here http://www.access-programmers.co.uk/forums/showthread.php?s=&threadid=30167
Howlsta Vampire Slayer Local time Today, 17:45 Joined Jul 18, 2001 Messages 180 Jun 20, 2002 #3 You could try something like this, depends where you want the names displayed I guess... Dim I ' Declare variable. Dim names For I = 0 To Forms.Count - 1 names = names & Forms(I).Name & " " Next I MsgBox names, vbOKOnly, "Forms" End Sub Rich
You could try something like this, depends where you want the names displayed I guess... Dim I ' Declare variable. Dim names For I = 0 To Forms.Count - 1 names = names & Forms(I).Name & " " Next I MsgBox names, vbOKOnly, "Forms" End Sub Rich
aziz rasul Active member Local time Today, 17:45 Joined Jun 26, 2000 Messages 1,935 Jun 20, 2002 #4 Thank you ALL.