Hello,
how can I load a form in access?
I have one form (frmOne) with a command button. If I click on this button, I want to show a second form (frmTwo) with a label.
How can I load this second form???
Thanks.
Printable View
Hello,
how can I load a form in access?
I have one form (frmOne) with a command button. If I click on this button, I want to show a second form (frmTwo) with a label.
How can I load this second form???
Thanks.
C@lle,
you have to use following code :
DoCmd.OpenForm "test"
where test is a form ofcourse...
Bere Beton
:)
This will probably work also:
Dim frm as frmTwo
Set frm = New frmTwo
frmTwo.Show
Josh
Err - I meant
Dim frm as frmTwo
Set frm = New frmTwo
frm.Show
Compiler-dependant Josh