missinglinq
Programmer
I'm using the statement below to retrieve the names of the tables in a db into a combobox, but need help to figure out how to exclude the system tables such as MSysObjects, MSysACEs, MSysQueries and so forth.
SELECT [MSysObjects].[Name]
FROM MSysObjects
WHERE ((([MSysObjects].[Name]) Not Like "~*") And (([MSysObjects].[Type])=1));
Thanks!
The Missinglinq
Richmond, Virginia
There's ALWAYS more than one way to skin a cat!
SELECT [MSysObjects].[Name]
FROM MSysObjects
WHERE ((([MSysObjects].[Name]) Not Like "~*") And (([MSysObjects].[Type])=1));
Thanks!
The Missinglinq
Richmond, Virginia
There's ALWAYS more than one way to skin a cat!