Switchboard

F

fredg

Is it possible to add a delete query to the switchboard?

Are you talking about the switchboard with a maximum of 8 buttons
created by the switchboard manager add-in?
Sure. But not directly.
Create a module.
Public Sub DeleteSomething()
DoCmd.OpenQuery "QueryName"
End Sub

Using the switchboard manager, edit the switchboard command to
Run Code.
Write DeleteSomething in the Function Name box.
 
Top