G
Guest
I've written the code at bottom to open certain forms in my db. It all works
fine on my computer, where I created the db. But when users at other
stations use the database, the click event that should execute the code
doesn't seem to do anything. Do I need to specify the database? Is there
something in their settings that needs to be changed? I'm not using the
Security feature. HELP PLEASE!
subject = Forms!frm_Search!txtSubject.Text
category = Forms!frm_Search!cmbCategory.Text
DoCmd.OpenForm FormName:="frm_Browse", view:=acNormal,
wherecondition:= category & " Like " & Chr$(34) & "*" & subject & "*" &
Chr$(34)
fine on my computer, where I created the db. But when users at other
stations use the database, the click event that should execute the code
doesn't seem to do anything. Do I need to specify the database? Is there
something in their settings that needs to be changed? I'm not using the
Security feature. HELP PLEASE!
subject = Forms!frm_Search!txtSubject.Text
category = Forms!frm_Search!cmbCategory.Text
DoCmd.OpenForm FormName:="frm_Browse", view:=acNormal,
wherecondition:= category & " Like " & Chr$(34) & "*" & subject & "*" &
Chr$(34)