skwilliams
Registered User.
- Local time
- Today, 06:24
- Joined
- Jan 18, 2002
- Messages
- 516
I have a menu that opens when a username and password is entered. The buttons work correctly on this menu except for one. It does nothing. If I use the shift bypass and go to the menu then click the button it works fine. Here's the on_click procedure.
Code:
Private Sub Command67_Click()
On Error GoTo Err_Command67_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frmMain"
DoCmd.OpenForm stDocName, acNormal
Exit_Command67_Click:
Exit Sub
Err_Command67_Click:
MsgBox Err.Description
Resume Exit_Command67_Click