ACC97: Sample Procedure to Determine Current Page of Tab ControlLast reviewed: October 24, 1997Article ID: Q172616 |
The information in this article applies to:
SUMMARYModerate: Requires basic macro, coding, and interoperability skills. You can selectively run Visual Basic for Applications code based on the tabs that you select in a tab control. To ensure that a particular block of code is executed when you click on 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 on the body of page, but it does not occur when you click on the page's corresponding tab. However, the Change event occurs every time you click on 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 current page's index. This article assumes that you are familiar with Visual Basic for Applications and with creating Microsoft Access applications using the programming tools provided with Microsoft Access. For more information about Visual Basic for Applications, please refer to the "Building Applications with Microsoft Access 97" manual. NOTE: A demonstration of the technique used in this article can be seen in the sample file, FrmSmp97.exe. For information about how to obtain this sample file, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q175066 TITLE : ACC97: Microsoft Access 97 Sample Forms Available on MSL MORE INFORMATIONCAUTION: Following the steps in this example will modify the sample database Northwind.mdb. You may want to back up the Northwind.mdb file and perform these steps on a copy of the database.
REFERENCESFor more information about the using Select Case to control program flow, search the Help Index for "Select Case statement." For more information about the Tab control, search the Help Index for "tab controls," or ask the Microsoft Access 97 Office Assistant.
|
Additional query words: tabcontrol
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |