I am trying to get data from 4 tables to show up (for entry or editing) on 4 tabs of a tab control.
So here is the structure:
table1.col1 (PK)
table2.col1 (FK)= table1.col1 (PK)
table3.col1 (PK)
table3.col2 (FK) = table1.col1 (PK)
table4.col1 (FK) = table3.col1 (PK)
Basically Table2 is the child table of Table1
and
Table4 is the child table of Table3
Table3 is
tab control has 4 tabs (tab1...tab4)
and the data is displayed on:
tab1 = table1
tab2 = table2
...
tab4 = table4
Table1 and Table2 are displayed and synched correctly on tab1 and tab2
How can I get tab3 to display data from table3 - I am sure if I figure that out tab4 should display table4 correctly.
Is this even the right of UI design? Other suggestions are welcome.