Mulitple Treeviews on a tab control

alebreuilly

New member
Local time
Today, 17:15
Joined
Jan 18, 2007
Messages
6
greetings

I am having a problem with a treeview control on a tab control

I have a tab control with two pages on it.

I then have a treeview on each that allows checkboxes.

Every time i select the checks on one treeview the checked boxes become unchecked on the other treeview. Any ideas on how i can keep the check boxes selected when i switch from treeview to treeview?

Andy
 
You're displaying the same data in each tree view.
 
The tab control that's in VBA in Access by default isn't a true tabbed control unless you code around it -- llk was right that both tabs show the same thing. What you want is the MultiPage control, as that treats each tab as a separate entity. Add it to your toolbox in Form Design view -- it's called the "Microsoft Forms 2.0 MultiPage" control in Access 2003. From there, it works pretty much like how you were thinking the tab control would work in the first place.
 

Users who are viewing this thread

Back
Top Bottom