How do I:
code NEXT for next form?
PREVIOUS?
EXIT?
Thanks!!!
Printable View
How do I:
code NEXT for next form?
PREVIOUS?
EXIT?
Thanks!!!
What do you need to do with next(porevious) form? Load it?
Iouri Boutchkine
[email protected]
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]