I tried that, I added a new Switchboard Item of Run Code > runcommand
acCmdBackup. When I click the switchboard item I get "There was an error
running commad."
I also had tried it as a VB statement and could quite figure it out.
The syntax would be...
DoCmd.RunCommand acCmdbackup
However, here is an alternative.
Private Sub Back_up_Click()
CommandBars("Menu Bar"). _
Controls("Tools"). _
Controls("Database utilities"). _
Controls("Back Up Database..."). _
accDoDefaultAction
End Sub