Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I have a number of Excel files that have data connections to various sources,
and I want to be able to read the data connection strings and command text (SQL) using VBA. In Access this would be easy to do, creating a database object, and looking at the QueryDefs. Is there something similar in Excel? If someone could point me to an on-line reference or provide a code like the one below, that would be great. Thank you. Mark Private Sub Test() Dim strMsg As String Dim db As DAO.Database Dim qds As DAO.QueryDefs Dim qd As DAO.QueryDef Set db = currentdb() Set qds = db.QueryDefs For Each qd In qds Debug.Print qd.Connect & vbTab & qd.Sql Next End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
find and replace numeric strings in larger text strings | Excel Worksheet Functions | |||
Accessing the text of a form command button from underlying macro | Excel Programming | |||
list of extended properties for use with ADO connection strings | Excel Programming | |||
Updating Connection Strings | Excel Programming | |||
Changing Connection Strings | Excel Programming |