I have a baseclass derived from:
Infragistics.Win.UltraWinTabControl.UltraTabControl
I put it on a form and then populated the pages with controls. How do I loop through all of the controls on each page or the current page from a form method?
I can see the controls sitting on ultraTabPageControl8 (page 26 of 31) derived from Infragistics.Win.UltrawinTabControl.UltraTabPageControl in the ide...
You can loop through the Controls collections of the tab page's of all or only the selected tab. The TabPage property on each tab will return its associated tab page control.
Mike, can post sample.