Hello,
I found this creative and programmer based forum, and i'm very interested in being involved and helping and also getting help, unfortunately, as my first post i must ask for help. I have an access database, that's displaying an OpenForm error in some locations of the network, and some not. If you wouldn't mind, tell me if it's code related or something external, as i am not advanced enough to decipher that myself. Thanks.
-Rich
I found this creative and programmer based forum, and i'm very interested in being involved and helping and also getting help, unfortunately, as my first post i must ask for help. I have an access database, that's displaying an OpenForm error in some locations of the network, and some not. If you wouldn't mind, tell me if it's code related or something external, as i am not advanced enough to decipher that myself. Thanks.
Code:
Private Sub Command61_Click()
On Error GoTo Err_Command61_Click
Dim stDocName As String
Dim stLinkCriteria As String
stDocName = "frm Calendar"
DoCmd.OpenForm stDocName, , , stLinkCriteria
Exit_Command61_Click:
Exit Sub
Err_Command61_Click:
MsgBox Err.Description
Resume Exit_Command61_Click
End Sub
-Rich