danielemc2
Programmer
I am creating a list of queries for the user to select from.
Dim obj As AccessObject
Dim dbs As Object
For Each obj In dbs.AllQueries
QueriesList.RowSource = QueriesList.RowSource + obj.Name + ";"
End If
Once they have chosen a query I need to get the sql from it.
These are SELECT queries and I need to build and run an UPDATE query based on the WHERE clause.
Is this possible?
Dim obj As AccessObject
Dim dbs As Object
For Each obj In dbs.AllQueries
QueriesList.RowSource = QueriesList.RowSource + obj.Name + ";"
End If
Once they have chosen a query I need to get the sql from it.
These are SELECT queries and I need to build and run an UPDATE query based on the WHERE clause.
Is this possible?