RangerTen
Rangers Lead The Way!
- Local time
- Today, 11:55
- Joined
- Jun 30, 2002
- Messages
- 42
I want to use create a variable that will hold a new instance of a form when it is opened....if that makes sense...
Dim test As New Form_frmForm1
DoCmd.OpenForm "test"
doesn't work. how do I then open that form once the variable has been initialized. Don't know where to go from here.
Thanks.
Of course, what kind of problems will this cause if I have two instances of the same form open and they are both connected to the same table. Would this be similar to being logged into a database by multiple users?
Dim test As New Form_frmForm1
DoCmd.OpenForm "test"
doesn't work. how do I then open that form once the variable has been initialized. Don't know where to go from here.
Thanks.
Of course, what kind of problems will this cause if I have two instances of the same form open and they are both connected to the same table. Would this be similar to being logged into a database by multiple users?
Last edited: