ACC97: Sample Procedure to Determine Current Page of Tab Control (172616)
The information in this article applies to:
This article was previously published under Q172616 Moderate: Requires basic macro, coding, and interoperability skills.
SUMMARY
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 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
on the body of page, but it 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.
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:
175066 ACC97: Microsoft Access 97 Sample Forms Available in Download Center
REFERENCES
For 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.
Modification Type: | Major | Last Reviewed: | 9/25/2003 |
---|
Keywords: | kbhowto kbinfo KB172616 |
---|
|