|
-
April 5th, 2001, 11:10 AM
#1
code
How do I:
code NEXT for next form?
PREVIOUS?
EXIT?
Thanks!!!
-
April 5th, 2001, 11:39 AM
#2
Re: code
What do you need to do with next(porevious) form? Load it?
Iouri Boutchkine
[email protected]
-
April 5th, 2001, 11:42 AM
#3
Re: code
If you are talking about Forms collection then the following code
Dim frm As Form
For Each frm In Forms
MsgBox frm.Name
Next
will show you every loaded form in the Forms collection
Iouri Boutchkine
[email protected]
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|