Hi,
Okay, i have been researching for 2 weeks now and i cant seem to find anyone to help me. We are using access 2010, I have a blank form that produces an ID number for the specific record when saved. then i have other forms where the ID field is hyperlinked to the original form that was entered. I now have 2 users that are unable to open the hyperlinked form. when i login as them im able to open the hyperlinked form. Below is the code we used. is there something im missing?
Private Sub ID_Click()
On Error GoTo Error_Catcher_1
DoCmd.OpenForm "NewRequestForm", , , "ID= " & Me.ID, acFormEdit
If IsNull(Sector) Then
Error_Catcher_1:
MsgBox "You may not enter a new request here."
End If
Exit Sub
End Sub
:banghead:
Okay, i have been researching for 2 weeks now and i cant seem to find anyone to help me. We are using access 2010, I have a blank form that produces an ID number for the specific record when saved. then i have other forms where the ID field is hyperlinked to the original form that was entered. I now have 2 users that are unable to open the hyperlinked form. when i login as them im able to open the hyperlinked form. Below is the code we used. is there something im missing?
Private Sub ID_Click()
On Error GoTo Error_Catcher_1
DoCmd.OpenForm "NewRequestForm", , , "ID= " & Me.ID, acFormEdit
If IsNull(Sector) Then
Error_Catcher_1:
MsgBox "You may not enter a new request here."
End If
Exit Sub
End Sub
:banghead: