LittleSmudge
Programmer
The following is Access DAO
What does this translate to in ADO ?
The nearest thing I've come across in searching involves
But then I can't find which Reference library I need to link in that recognises ADOX
G LS
Code:
Dim db As Database
Dim tbf As TableDef
Set db = CurrentDb
For Each tbf In db.TableDefs
What does this translate to in ADO ?
The nearest thing I've come across in searching involves
Code:
Dim cnn As ADOX.Connection
G LS