Click to See Complete Forum and Search --> : code


amphi
April 5th, 2001, 11:10 AM
How do I:
code NEXT for next form?
PREVIOUS?
EXIT?

Thanks!!!

Iouri
April 5th, 2001, 11:39 AM
What do you need to do with next(porevious) form? Load it?

Iouri Boutchkine
iouri@hotsheet.com

Iouri
April 5th, 2001, 11:42 AM
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
iouri@hotsheet.com