- Local time
- Today, 04:34
- Joined
- Feb 28, 2001
- Messages
- 30,556
I am building a self-documenter procedure with VBA, including some cross-reference info. Mostly it works well, but I have a few gaps. One of them has to do with embedded queries.
When enumerating queries in AC97, using the syntax:
For Each qdf in querydefs
...
strQueryName = qdf.Name
...
next qdf
I run across queries with names that begin with (and often include) the text fragment "~sq_x" where x is a lower-case letter. I have decided that such queries represent embedded queries that might be either a validation query resulting from a combo box or embedded record sources (where when you look at a form's RecordSource box you don't see a name, you see an SQL statement.)
Does anyone know how those ~sq_x names are assigned? In particular, I am trying to find out the meanings associated with "x" where so far, I have seen "x" equal s,f,d, and r.
Can anyone at least point me in a good direction? So far, searching the Access Help files has not produced anything, and no other reference I have found tells me anything, either. Any and all help will be gratefully appreciated.
[This message has been edited by The_Doc_Man (edited 03-09-2001).]
When enumerating queries in AC97, using the syntax:
For Each qdf in querydefs
...
strQueryName = qdf.Name
...
next qdf
I run across queries with names that begin with (and often include) the text fragment "~sq_x" where x is a lower-case letter. I have decided that such queries represent embedded queries that might be either a validation query resulting from a combo box or embedded record sources (where when you look at a form's RecordSource box you don't see a name, you see an SQL statement.)
Does anyone know how those ~sq_x names are assigned? In particular, I am trying to find out the meanings associated with "x" where so far, I have seen "x" equal s,f,d, and r.
Can anyone at least point me in a good direction? So far, searching the Access Help files has not produced anything, and no other reference I have found tells me anything, either. Any and all help will be gratefully appreciated.
[This message has been edited by The_Doc_Man (edited 03-09-2001).]