Can you use a combo box to change forms? the look of the
form when using command buttons looks very out of date, so
i was hoping to use something else.
Sure. Just base the Combo Box on a Query listing the names of the
forms; you might want to have a table with two fields - the actual
stored name of the form, e.g. frmClientEntry, and a "user friendly"
name "Client Entry and Editing". Make this the visible field of the
combo and the actual form name the bound column.
In the AfterUpdate event of the combo use code like
Private Sub cboChooseForm_AfterUpdate()
Dim strDocument As String
strDocument = Me!cboChooseForm
DoCmd.OpenForm strDocument, <optional arguments>
End Sub