L
Lucky
I need to create in ADO function that works like
DoesObjectExist (Microsoft Knowledge Base Article -
210598).
I can get through tables (simple, TableDef is Tables in
ADO), after that I am stuck in finding corresponding ADO
values/parameters for QueryDef, etc.
Example:
Case "Queries"
For Each qry In dbs.QueryDefs
If qry.Name = objName Then
objExists = True
Exit Function
End If
Next qry
How do I convert this and similar code for forms,
reports, modules to ADO?
Your help or ideas are greatly appreciated.
Lucky
DoesObjectExist (Microsoft Knowledge Base Article -
210598).
I can get through tables (simple, TableDef is Tables in
ADO), after that I am stuck in finding corresponding ADO
values/parameters for QueryDef, etc.
Example:
Case "Queries"
For Each qry In dbs.QueryDefs
If qry.Name = objName Then
objExists = True
Exit Function
End If
Next qry
How do I convert this and similar code for forms,
reports, modules to ADO?
Your help or ideas are greatly appreciated.
Lucky