What I am trying to accomplish is: There are numerous tables. Instead of
closing one form and opening the next to enter data, I want them to be in one
form with a sequence of tab pages so that navigation could be easier. I
tried initially to include all of the tables in a query and use the query as
a record source. However, all of the pages came up blank in form view.
That's because the One Grand Monster Query is the wrong approach. The
query joining all these tables almost certainly won't retrieve any
records and won't be updateable.
Instead, use a Subform on each tab page, one subform for each table.
I have some real concerns about the design of your database though -
are these lots of unrelated tables? Or how are your tables related to
one another? Do you have a logical set of one-to-many relationships,
or are you using multiple tables to get around the (absurdly large)
255 field limit?
John W. Vinson[MVP]