Controls on multiple tabs

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Is there a way to mirror a control onto multiple tabs? Have 1 listview
displayed on 2 tabs or 1 textbox displayed on 2 tabs but function as 1?

Thank you in advance.
 
One other idea, just create two listviews, one on each tab page, but
have them both point to the same data source. Then you will only need
to maintain the data once and both list views should be updated!
 
You could 'move' the ListView programatically from one tab to the other
whenever the tab page changes by setting it's owner or parent
properties.

Just a thought.
 
Back
Top