G
Guest
Hi
Is there away to show all tables in a combobox in a form
regards
Alvin
Is there away to show all tables in a combobox in a form
regards
Alvin
Is there away to show all tables in a combobox in a form
Tim Ferguson said:I don't like messing about with undocumented System tables <g>
bob said:You can base the combo box on this query (which will, normally, show all
non-system tables in your database):
SELECT MSysObjects.Name
FROM MSysObjects
WHERE (((MSysObjects.Name) Not Like "msys" & "*") AND
((MSysObjects.Type)=1));
Bob Galway
www.bbg-enterprises.com
While I understand where you're coming from, Tim, you might want to read
MichKa's comments on this subject at
http://www.trigeminal.com/usenet/usenet017.asp