GaryEWheeler
New member
- Local time
- Today, 14:20
- Joined
- Jun 25, 2012
- Messages
- 6
I'm having a strange problem. I'm writing code so I can open multiple copies of the same form. Here is the code I'm using.
Dim newfrm As Form
Set newfrm = New myFormName
newfrm.Visible = True
newfrm.Caption = "myCaption"
Here is the problem, when I use the command "Set newfrm = New ?????" the form I want to use doesn't show up in the list of objects. In fact, only 2 of the 7 forms currently in the project show up in the list.
Any ideas?
Gary
Dim newfrm As Form
Set newfrm = New myFormName
newfrm.Visible = True
newfrm.Caption = "myCaption"
Here is the problem, when I use the command "Set newfrm = New ?????" the form I want to use doesn't show up in the list of objects. In fact, only 2 of the 7 forms currently in the project show up in the list.
Any ideas?
Gary