I'm having problems getting my switchboard button to run a function I created. I'm guessing its something in the way my code is written, the name or something I'm leaving out, but I'm not seeing it. If you have any idea please help me.
I went through the switchboard manager and set the item I want to run code and copy and pasted the function name from the code to the manager so I dont think the problem is there. Now here is what my function looks like:
Public Function ClearContestants()
DoCmd.SetWarnings False
DoCmd.OpenQuery "qryContestantClear"
DoCmd.OpenQuery "qryAirflowClear"
DoCmd.OpenQuery "qryBrazingClear"
DoCmd.OpenQuery "qryCoolingClear"
DoCmd.OpenQuery "qryHeatingClear"
DoCmd.OpenQuery "qryTestClear"
DoCmd.SetWarnings True
End Function
Side note, I would do this through a macro but I dont want the warnings popping up and I didnt know how, if possible, to turn them off in a macro.
Thanks
I went through the switchboard manager and set the item I want to run code and copy and pasted the function name from the code to the manager so I dont think the problem is there. Now here is what my function looks like:
Public Function ClearContestants()
DoCmd.SetWarnings False
DoCmd.OpenQuery "qryContestantClear"
DoCmd.OpenQuery "qryAirflowClear"
DoCmd.OpenQuery "qryBrazingClear"
DoCmd.OpenQuery "qryCoolingClear"
DoCmd.OpenQuery "qryHeatingClear"
DoCmd.OpenQuery "qryTestClear"
DoCmd.SetWarnings True
End Function
Side note, I would do this through a macro but I dont want the warnings popping up and I didnt know how, if possible, to turn them off in a macro.
Thanks