Forum Discussion
WilsonRebound
Feb 16, 2020Copper Contributor
Access Switchboars
I created a switchboard to allow a user to navigate a database, The main switchboard that has buttons that when pressed send the user to different forms within the database. On each of the forms th...
George Hepworth
Feb 17, 2020Steel Contributor
WilsonRebound The most direct way to do this would be to add a line to the command that opens the other forms from the switchboard.
DoCmd.Close objecttype:=acForm, objectname:="frmSwitchboard", Save:=acSaveNo
Place this line after the line that opens other forms.