Alibaba2003
Programmer
I am listing all of the queries that I have in my database.
I am trying to distinguish action queries from select queries. I am listing the queries without a problem and append them to a table. I just dont know how to list the Query type as well. Here is my code .. Thanks
For Each obj In dbs.AllQueries
lenOfTableName = Len(obj.NAME)
'If left(obj.NAME, 1) = "@" Then
r0.AddNew
r0!QueryName = obj.FullName
R0!QUERYTYPE = '' WHAT DO I WRITE HERE?????
r0.Update
'End If
Next obj
It's Nice to Be Important But It's more Important to BE Nice
I am trying to distinguish action queries from select queries. I am listing the queries without a problem and append them to a table. I just dont know how to list the Query type as well. Here is my code .. Thanks
For Each obj In dbs.AllQueries
lenOfTableName = Len(obj.NAME)
'If left(obj.NAME, 1) = "@" Then
r0.AddNew
r0!QueryName = obj.FullName
R0!QUERYTYPE = '' WHAT DO I WRITE HERE?????
r0.Update
'End If
Next obj
It's Nice to Be Important But It's more Important to BE Nice