
Originally Posted by
pbaldy
To the point, I can think of a couple of potential solutions (both of which use forms based on your tables as subforms, not the tables themselves). The first is a little less efficient but maybe easier. You can put a tab control onto your form with 3 tabs. On each tab would be a subform based on the appropriate table. The user would click on the appropriate tab to see that data.
The second method would be to have one subform control on the form. Behind your buttons, you set the SourceObject property of that control to place the desired subform in there:
Me.SubformControlName.SourceObject = "FormName"