Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Combo box problem.

Status
Not open for further replies.

BobLoblaws

Programmer
Nov 20, 2001
149
CA
I would like a combo box that dynamically gets items when the form is loaded. However, I want it to list all the reports in the database.
Thing is, there is no additem functionality.
Is there something I'm missing?

Thanks.
 

On the combo box properties, under the data tab, in the Row Source line, put the following syntax:

SELECT MSysObjects.Name FROM MSysObjects WHERE Type =-32764 ORDER BY Name;


HTH,
GGleason
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top