M method New member Local time Today, 12:38 Joined Mar 23, 2005 Messages 5 Mar 23, 2005 #1 I wonder how i in VB6, i can use Tabledef to get the list of tables in an access database and display it in a combo box. I be hapy if some one show me how. thanks
I wonder how i in VB6, i can use Tabledef to get the list of tables in an access database and display it in a combo box. I be hapy if some one show me how. thanks
Mile-O Back once again... Local time Today, 20:38 Joined Dec 10, 2002 Messages 11,316 Mar 23, 2005 #2 You could just use ADO to create a query recordset using the query: SELECT Name FROM MSysObjects WHERE Type = 1 AND Name Not Like "MSys*" ORDER BY Name; Click to expand...
You could just use ADO to create a query recordset using the query: SELECT Name FROM MSysObjects WHERE Type = 1 AND Name Not Like "MSys*" ORDER BY Name; Click to expand...