MS Access form tabs

akash2010

New member
Local time
Yesterday, 16:58
Joined
Nov 29, 2010
Messages
3
Hello All,
If I have a form, where a user selects a criteria from a drop down list --> click "View" button --> a new form opens up with various tabs.
Is there a way to manipulate these tabs to show just specific ones pertaining to the criteria selected?

Thank you, much appreciated!
 
You can use;
Code:
Me.PageName.Visible = False
To hide a specific tab, it would just be a matter of setting the Visible properties of your various pages on your tab control.
 

Users who are viewing this thread

Back
Top Bottom