|
-
Nov 8th, 2000, 02:55 AM
#1
Thread Starter
Addicted Member
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.
-
Nov 8th, 2000, 03:50 AM
#2
Junior Member
C@lle,
you have to use following code :
DoCmd.OpenForm "test"
where test is a form ofcourse...
Bere Beton
-
Nov 8th, 2000, 07:31 AM
#3
Black Cat
This will probably work also:
Dim frm as frmTwo
Set frm = New frmTwo
frmTwo.Show
Josh
-
Nov 8th, 2000, 07:32 AM
#4
Black Cat
Err - I meant
Dim frm as frmTwo
Set frm = New frmTwo
frm.Show
Compiler-dependant Josh
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
|