rachel_harder
Registered User.
- Local time
- Today, 14:14
- Joined
- Feb 4, 2015
- Messages
- 13
I have a Database that I have built and have put onto a shared network so my coworkers can use the same database we all can track things from our own computers. The database has a form that can open different forms depending on the button that is pushed on the form. When I test everything out on my computer everything works great, and I have no issues. I then go to a coworkers computer, and I try to click on some buttons, and nothing happens. I then go back to my computer, and click on the button, and everything works great. The code that I am using to operate the buttons is really simple, and I have tried multiple different ways of writing it. All the codes work on my computer but don't work when on a coworkers. An example of the code I am using is:
Is there anything that I am doing wrong so that the code will not work on my coworkers computers?
Thank you for your help
Code:
Private Sub Search_Button_Click()
DoCmd.Minimize
str_Form = "Admin_PartSearch"
DoCmd.OpenForm str_Form, acViewNormal, acEdit
End Sub
Is there anything that I am doing wrong so that the code will not work on my coworkers computers?
Thank you for your help