G
Guest
Used this Multiselect before it worked fine.. works on another computer fine
Have it (variations) in 2 mdb and both now return RT Error 5 have read and
tried some of the fixes on the following...
http://www.accessmvp.com/djsteele/AccessReferenceErrors.html
I have checked referances none MISSING /reset etc doesn't fix
Any other "quick" suggestions WHY this would happen? (by the way I am NOOB
so be kind please) following is where the error occurs
Thanks
lmv
Public Function IsChecked(vID As Variant) As Boolean
Dim lngID As Long
IsChecked = False
On Error GoTo exit1
lngID = colCheckBox(CStr(vID))
If lngID <> 0 Then
IsChecked = True
End If
Have it (variations) in 2 mdb and both now return RT Error 5 have read and
tried some of the fixes on the following...
http://www.accessmvp.com/djsteele/AccessReferenceErrors.html
I have checked referances none MISSING /reset etc doesn't fix
Any other "quick" suggestions WHY this would happen? (by the way I am NOOB
so be kind please) following is where the error occurs
Thanks
lmv
Public Function IsChecked(vID As Variant) As Boolean
Dim lngID As Long
IsChecked = False
On Error GoTo exit1
lngID = colCheckBox(CStr(vID))
If lngID <> 0 Then
IsChecked = True
End If