The Microsoft Access tab controls makes it easy to show a different subform on each tab page. Unfortunately, it you add too many, the form may take a long time to open. This is because it's loading all the data in each of the subforms even though only page 1 is shown.
To speed up your MS Access form, you can design it with the subforms on page 2 and beyond remain unbound until the user clicks on its page.
This on-demand technique allows the main form to load without trying to populate all of the subforms.
This sample VBA code is for a tab control named tabStuff. We refer to the page by name rather than number because you may reorder or add/delete tabs over time:
Private Sub tabStuff_Change() Select Case tabStuff.Pages.item(tabStuff.Value).Name Case "pg1" ' Where sfrm1 is the name of the subform on page 1 If Len(sfrm1.SourceObject) = 0 Then sfrm1.SourceObject = "frmStuff_1" sfrm1.LinkChildFields = "StuffID" End If Case "pg2" ' Where sfrm2 is the name of the subform on page 2 If Len(sfrm2.SourceObject) = 0 Then sfrm2.SourceObject = "frmStuff_2" sfrm2.LinkChildFields = "StuffID" End If ' Repeat for each tab page End Select End Sub
Strategic Overview
Microsoft Access within an Organization's Database Strategy
How many simultaneous Microsoft Access users?
Blaming Microsoft Access instead of the Developer
Microsoft Access Version Feature Differences
Microsoft Access Versions, Service Packs and Updates
Microsoft Office 365 Access Update Version Releases
Top 14 Features Added with MS Access 2007
Taking Over Legacy MS Access Databases
Winner of Every Best Access Add-in Award
Set AutoNumber Starting Number Other than 1
Avoid Unnecessary or Duplicate Indexes
Copy Command Button and Keep Picture
Module VBA to Forms and Controls
Subform Reference to Control Rather than Field
Suppress Page Headers and Footers on the First Page of Your Report
Annual Monthly Crosstab Columns
Add Buttons to the Quick Access Toolbar
Collapse the Office Ribbon for more space
Avoid Exits in the Body of a Procedure
Send Emails with DoCmd.SendObject
Error Handling and Debugging Techniques
Error Number and Description Reference
Remote Desktop Connection Setup
Terminal Services and RemoteApp Deployment
Missing Package & Deployment Wizard
Remove 'Save to SharePoint Site' Prompt from an Access Database
Class Not Registered Run-time Error -2147221164
Microsoft Access to SQL Server Upsizing Center
When and How to Upsize Access to SQL Server
SQL Server Express Versions and Downloads
Deploying MS Access Linked to SQL Azure
SQL Server Azure Usage and DTU Limits