How do I display more than one instance of a Form????
For example. Let's say we have a form called frmhello
i have to be able to click a command button and have it load up frmhello everytime. so, each time i click it, another frmhello loads up.
Printable View
How do I display more than one instance of a Form????
For example. Let's say we have a form called frmhello
i have to be able to click a command button and have it load up frmhello everytime. so, each time i click it, another frmhello loads up.
Hi zej,
'wanna try this ...
Private Sub Command1_Click()
Dim fNew as new frmhello
fNew.Show
End Sub
Hope this can help ...
I think you might need a Set statement in there.
Code:Private Sub Command1_Click()
Dim NewForm as new frmhello
Set NewForm = frmhello
NewForm.Show
End Sub