G
gaba
Hi,
I have a continuous subform with a Custom Navigation buttons form. The
navigation buttons work when I test the subform by itself but I can't make
them work when inside the Parent form. I get a message saying the subform is
not open.
Any help will be greatly appreciated!
Private Sub cmdFirst_Click()
On Error GoTo Err_cmdFirst_Click
DoCmd.GoToRecord acDataForm, Me.Parent.Name, acFirst
Exit_cmdFirst_Click:
Exit Sub
Err_cmdFirst_Click:
MsgBox Err.Description
Resume Exit_cmdFirst_Click
End Sub
I have a continuous subform with a Custom Navigation buttons form. The
navigation buttons work when I test the subform by itself but I can't make
them work when inside the Parent form. I get a message saying the subform is
not open.
Any help will be greatly appreciated!
Private Sub cmdFirst_Click()
On Error GoTo Err_cmdFirst_Click
DoCmd.GoToRecord acDataForm, Me.Parent.Name, acFirst
Exit_cmdFirst_Click:
Exit Sub
Err_cmdFirst_Click:
MsgBox Err.Description
Resume Exit_cmdFirst_Click
End Sub