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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Drop down list of current tables in Access

Status
Not open for further replies.

mikej336

MIS
Feb 10, 2005
164
US
I was wondering if someone could tell me how to create a drop down list of the current tables in Access on an Access form.

Thanks

Uncle Mike
 
The following SQL statement will return all your tables excluding MSys tables:

SELECT [MSysObjects].[Name], [MSysObjects].[Type] FROM MSysObjects WHERE ((([MSysObjects].[Name]) Not Like "MSys*") And (([MSysObjects].[Type])=1)) Or ((([MSysObjects].[Name]) Not Like "MSys*") And (([MSysObjects].[Type])=6));

Ed Metcalfe.

Please do not feed the trolls.....
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top