Is there any way to open multiple instances of the same form? I have tried the following code on frmMyForm:
Dim frm as Form
Set frm = New Form_frmMyForm
frm.Visible = True
...which looks like it opens a new instance of the form, and flashes it on the screen for a second and then the form disappears. Any ideas on how I can do this successfully? Thanks!
Dim frm as Form
Set frm = New Form_frmMyForm
frm.Visible = True
...which looks like it opens a new instance of the form, and flashes it on the screen for a second and then the form disappears. Any ideas on how I can do this successfully? Thanks!