J jereece Registered User. Local time Today, 02:42 Joined Dec 11, 2001 Messages 300 Dec 12, 2001 #1 I have a database with reports. I want to create a form with a combo box which contains a list of the 6 reports so that the one selected will launch. How can this be done? Thanks, Jim
I have a database with reports. I want to create a form with a combo box which contains a list of the 6 reports so that the one selected will launch. How can this be done? Thanks, Jim
P Pat Hartman Super Moderator Staff member Local time , 21:42 Joined Feb 19, 2002 Messages 46,883 Dec 12, 2001 #2 The following query can be used as the recordsource for your combobox. SELECT MSysObjects.Name FROM MSysObjects WHERE MSysObjects.Type = -32764; In the double click event of the combobox, use the OpenReport method to open the selected report.
The following query can be used as the recordsource for your combobox. SELECT MSysObjects.Name FROM MSysObjects WHERE MSysObjects.Type = -32764; In the double click event of the combobox, use the OpenReport method to open the selected report.