Moderate: Requires basic macro, coding, and interoperability skills.
This article applies to a Microsoft Access database (.mdb) and to a Microsoft Access project (.adp).
For a Microsoft Access 2000 version of this article, see
198639.
IN THIS TASK
SUMMARY
You can run Visual Basic for Applications (VBA) code based on the tabs that are selected in a tab control. To make sure that a particular block of code runs when you click a particular tab, use a
SELECT CASE statement with the
Change event of the tab control itself, instead of using the
Click event of the particular page.
In a tab control, a tab contains a page, but it is not actually part of the
page itself. Therefore, the
Click event of a page occurs when you click in the body of the page, but the
Click event does not occur when you click the corresponding tab of the page. However, the
Change event occurs every time you click a different tab. You can then use the
SELECT CASE statement to direct the flow of your code so that it depends on the index of the current page. The
Value property of a tab control returns the index of the current page.
Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific requirements.
back to the top
Use a VBA Procedure to Determine the Current Page of a Tab Control
CAUTION: If you follow the steps in this example, you modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and follow these steps on a copy of the database.
- Start Microsoft Access.
- On the Help menu, point to Sample Databases, and then click Northwind Sample Database.
- Open the Employees form in Design view.
- On the View menu, click Properties.
- To select the tab control, in the Form list, select TabCtl0, and then click the Event tab.
- Click to put the insertion point in the OnChange box, click the Build button (...), click Code Builder, and then click OK.
- Copy the following code into the event procedure:
Private Sub TabCtl0_Change()
Select Case Me!TabCtl0.Value ' Returns Page Index.
Case 0 ' Page Index for Page 1.
MsgBox "You have selected Company Info"
Case 1 ' Page Index for Page 2.
MsgBox "You have selected Personal Info"
End Select
End Sub
- On the File menu, click Close and Return to Microsoft Access.
- On the View menu, click Form View.
- On the Personal Info tab, note that the following message appears:
You have selected Personal Info.
- On the Company Info tab, note that the following message appears:
You have selected Company Info.
back to the top
REFERENCES
For more information about the tab control, click
Microsoft Access Help on the
Help menu, type
What is a tab control in the Office Assistant or the Answer Wizard, and then click
Search to view the topic.
For more information about using the Select Case statement to control program flow, in the Visual Basic Editor, click
Microsoft Visual Basic Help on the
Help menu, type
Select Case statement in the Office Assistant or the Answer Wizard, and then click
Search to view the topic.
back to the top