Hi there,
First post, am a seasoned access builder but cant find the answer to this after doing a google...
I want to list all the append queries in my database.
I thught the following would have done but only returns tables and select queries...Anyone help?
Dim catDB As ADOX.Catalog
Dim tblList As ADOX.Table
Set catDB = New ADOX.Catalog
catDB.ActiveConnection = ConnectLocal
For Each tblList In catDB.Tables
Debug.Print tblList.Name & vbTab & tblList.Type
Next
Set catDB = Nothing
Thanks, Ross
First post, am a seasoned access builder but cant find the answer to this after doing a google...
I want to list all the append queries in my database.
I thught the following would have done but only returns tables and select queries...Anyone help?
Dim catDB As ADOX.Catalog
Dim tblList As ADOX.Table
Set catDB = New ADOX.Catalog
catDB.ActiveConnection = ConnectLocal
For Each tblList In catDB.Tables
Debug.Print tblList.Name & vbTab & tblList.Type
Next
Set catDB = Nothing
Thanks, Ross