hi
I'm out of space on my form and would like to open my continuous subform as a popup instead. What is the best way to do this?
I tried using the following code:
This sometimes allows you to enter the first record, if you want to add another record it sets the ID to 0.
Am I going about this the completely wrong way?
Help
Lou
I'm out of space on my form and would like to open my continuous subform as a popup instead. What is the best way to do this?
I tried using the following code:
Code:
strCriteria = "[RefID]= " & Me.[RefID]
DoCmd.OpenForm "frmSub", , , strCriteria
If Forms!frmParent!RefID <> Forms!frmChild!RefID Then
Forms!frmParent!RefID = Forms!frmChild!RefID
End If
This sometimes allows you to enter the first record, if you want to add another record it sets the ID to 0.
Am I going about this the completely wrong way?
Help
Lou