N
nieurig
Hello forum,
this question would aswered in the past, but i dont find
this answer.
I need to open the same form two times at Access 97.
If I call:
' Open the 1. form
DoCmd.OpenForm "F_MyForm"
' Open the 2. form
DoCmd.OpenForm "F_MyForm"
Access activate the first form instead of creating a new
form.
If i call:
Dim frm As Form
Set frm = New Form_F_MyForm
frm.Visible = True
i see the second form creating, but it don't stay at the
screen.
How to solve this problem?
Thanks in advance for any help.
Niels
this question would aswered in the past, but i dont find
this answer.
I need to open the same form two times at Access 97.
If I call:
' Open the 1. form
DoCmd.OpenForm "F_MyForm"
' Open the 2. form
DoCmd.OpenForm "F_MyForm"
Access activate the first form instead of creating a new
form.
If i call:
Dim frm As Form
Set frm = New Form_F_MyForm
frm.Visible = True
i see the second form creating, but it don't stay at the
screen.
How to solve this problem?
Thanks in advance for any help.
Niels