accessman -> RE: Retrieve all the table names (6/29/2006 0:16:50)
Not ASP.
I want to work with MS Access forms, Visual Basic in the MS Access Forms.
Can we use ADO to make it ?
Thanks.
rdouglass -> RE: Retrieve all the table names (6/29/2006 9:13:43)
Well, I'm not sure how to do it within Access it self but this SQL *should* return the list of all tables and views regardless of how you send it to Access:
SELECT MSysObjects.* FROM MSysObjects
That help any?
accessman -> RE: Retrieve all the table names (6/30/2006 12:13:15)