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.
 
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.
 
Back
Top