No, there is nothing like that. But, you can get the results in a
query:
Select Name,Type from MSYSOBJECTS
You'll have to look at the types. I don't have my cheatsheet of the
types infront of me. But, all the forms are like: -326XX or
something. Tables (local) are type=1, queries type=5.
So, if you wanted a list of all tables in the database in a combobox,
use the following recordsource:
Select Name from MSYSOBJECTS where Type=1 AND left(name,4) <> 'MSYS'
That will give you all the non-system tables.
Chris Nebinger.