Tab control based on different tables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have a tab control form. I would like to have the tabs based on different
tables. The Company, Employees and Badge tabs and the Co, Emp, Badge tables.
In other words there will be 3 different tables would be the datasource for
the 3 tabs. All tabs should allow for data entry into the tables.

Thanks In Advance
kw_uh97
 
kw_uh97 said:
I have a tab control form. I would like to have the tabs based on
different tables. The Company, Employees and Badge tabs and the Co,
Emp, Badge tables. In other words there will be 3 different tables
would be the datasource for the 3 tabs. All tabs should allow for
data entry into the tables.

Thanks In Advance
kw_uh97

The TabControl is strictly for arranging controls on your form. It doesn't
have a Data Source per page (or at all for that matter). To do what you
want you need to place subforms on each page.
 
Make one form for each table.
Then in your tab form make them subforms in each tab.
 
Thanks a bunch, the posts were very helpful!


Rick Brandt said:
The TabControl is strictly for arranging controls on your form. It doesn't
have a Data Source per page (or at all for that matter). To do what you
want you need to place subforms on each page.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top