citychap26
Programmer
Hi Guys,
Sorry if this has been answered before, I have searched and the sad thing is I have done it before !!
I want to open multiple instances of a form. I know that I have can use the following :
Sorry if this has been answered before, I have searched and the sad thing is I have done it before !!
I want to open multiple instances of a form. I know that I have can use the following :
Code:
Dim frm As Form
Set frm = New Form_frm_FULL_RECORD
frm.Visible = True
' frm.OpenArgs = Me.Child0.Form.UNIQUE_KEY.Value
frm.RecordSource = "select * from qry_EXCLUDE_TRANSACTIONS where UNIQUE_KEY = '" & Me.Child0.Form.UNIQUE_KEY.Value & "'"
'frmOpen Me.Form.Name, "frm_FULL_RECORD", Me.Child0.Form.UNIQUE_KEY.Value, False
Debug.Print "Opening: " & Me.Child0.Form.UNIQUE_KEY.Value
[code/]
however the form just flashes up and goes.
I seem to remember something about holding a global variable or a collection ???
Please help as I'm going mad.
Cheers
SK