Thanks for the input link. Where am I putting the last bit?
Code:
Private Sub cboFormOpen_AfterUpdate()
stDocName = Me.cboFormOpen
DoCmd.OpenForm stDocName
End Sub

Originally Posted by
Missinglinq
Place a
Combobox on your
Form. When the
Combobox Wizard comes up, click
Cancel.
Right-Click on the
Combobox and go to
Properties – Other and change the
Name Property from the one Access assigned to
cboFormOpen.
Now go to the
Data Tab and paste this into the
RowSource Property:
Code:
SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1)<>"~") And (MSysObjects.Type)=-32768 ORDER BY MSysObjects.Name;
Then use this code
Code:
Private Sub cboFormOpen_AfterUpdate()
stDocName = Me.cboFormOpen
DoCmd.OpenForm stDocName
End Sub
When you make a
selection the
chosen Form should
Open.
Linq
;0)>