Hello,
I am dynamically adding fields to tables, and I need to add those same fields into existing queries using the same procedure.
I have no problem adding the fields to tables, but can't find any postings (here or elsewhere) on how to dynamically add a field to an existing query.
This is as far as I got:
Dim FieldName as String
Database is already open
Set qry = db.QueryDef("queryName")
??? Now I need to add FieldName to queryName
Thanks.
I am dynamically adding fields to tables, and I need to add those same fields into existing queries using the same procedure.
I have no problem adding the fields to tables, but can't find any postings (here or elsewhere) on how to dynamically add a field to an existing query.
This is as far as I got:
Dim FieldName as String
Database is already open
Set qry = db.QueryDef("queryName")
??? Now I need to add FieldName to queryName
Thanks.