On Thu, 6 Jul 2006 14:32:01 -0700, lordjeffj wrote:
[Quoted Text] > Hello, > > Could someone tell me how I can list the queries of an access database in a > combo box in my access form? > > Jeff
Set the Rowsource Type property of the combo box to Table/Query. Set the row source to:
SELECT MSysObjects.Name FROM MSysObjects WHERE (((Left([Name],1))<>"~") AND ((MSysObjects.Type)=5)) ORDER BY MSysObjects.Name;
-- Fred Please respond only to this newsgroup. I do not reply to personal e-mail
|