I have a form that will not open in a 2000 database that I created. When I click on the command button to open the form, it states "you cancelled the previous operation".
Here is the code for the cmdButton...
Private Sub Command145_Click()
On Error GoTo Err_Command145_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Access Members"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command145_Click:
Exit Sub
Err_Command145_Click:
MsgBox Err.Description
Resume Exit_Command145_Click
End Sub
Any ideas would be appreciated greatly... anyone ever seen it do this?
Here is the code for the cmdButton...
Private Sub Command145_Click()
On Error GoTo Err_Command145_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "Access Members"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command145_Click:
Exit Sub
Err_Command145_Click:
MsgBox Err.Description
Resume Exit_Command145_Click
End Sub
Any ideas would be appreciated greatly... anyone ever seen it do this?