L
larry.nolan
I'm debugging a Access97 d.b. that has been converted to Access 2002.
the "Return" button:
Private Sub ReturnButton_Click()
DoCmd.Close , ""
DoCmd.OpenForm "Vol Info", acNormal, "", "", acEdit, acNormal
DoCmd.RunCommand acCmdRefresh
End Sub
the "Vol Info" form has a OnCurrent property to execute a procedure
Form_Current() but it is not executed when I return from Form B via the
ReturnButton_Click. The Form_Current() is executed when I click on one
of the navigation buttons to go to the next or previous record in my
bound "Vol Info" form.
Why isn't the OnCurrent event being triggered when I go through the
ReturnButton_Click() routine?
thanks,
Larry
return from Form B, I have this code that is executed when I click onFrom form "Vol Info" I have a button that takes me to Form B. When I
the "Return" button:
Private Sub ReturnButton_Click()
DoCmd.Close , ""
DoCmd.OpenForm "Vol Info", acNormal, "", "", acEdit, acNormal
DoCmd.RunCommand acCmdRefresh
End Sub
the "Vol Info" form has a OnCurrent property to execute a procedure
Form_Current() but it is not executed when I return from Form B via the
ReturnButton_Click. The Form_Current() is executed when I click on one
of the navigation buttons to go to the next or previous record in my
bound "Vol Info" form.
Why isn't the OnCurrent event being triggered when I go through the
ReturnButton_Click() routine?
thanks,
Larry