Bigthinkor
New member
- Local time
- Yesterday, 20:39
- Joined
- Jan 12, 2011
- Messages
- 8
hello everyone,
I am new to the forum and I would appreciate any help. I am using Access 2010 and I need to create a combo box that lists all the forms in my database. I need to be able to select a form from a drop-down list and it opens up the selected form.I've tried
SELECT MSysObjects.Name FROM MsysObjects WHERE (Left$([Name],1)<>"~") AND
(MSysObjects.Type)=-32768 ORDER BY MSysObjects.Name;
Private Sub FormOpenCombo_AfterUpdate()
stDocName = Me.FormOpenCombo
DoCmd.OpenForm stDocName
End Sub
to run this but no success. The cold is outdated
any help with the coding or strings would be greatly appreciated
I am new to the forum and I would appreciate any help. I am using Access 2010 and I need to create a combo box that lists all the forms in my database. I need to be able to select a form from a drop-down list and it opens up the selected form.I've tried

(MSysObjects.Type)=-32768 ORDER BY MSysObjects.Name;
Private Sub FormOpenCombo_AfterUpdate()
stDocName = Me.FormOpenCombo
DoCmd.OpenForm stDocName
End Sub
to run this but no success. The cold is outdated
any help with the coding or strings would be greatly appreciated