I am using an Ultra Tab Control to show multiple charts, each on a different TAB. The tabs and charts are placed on the Tab control at run-time. When the user defines their graph parameters and presses a command button the app the adds all of the necessary tabs with charts to the tab control. All charts have their DOCK property set to fill so that each tab is simply filled with one chart control. Once this is complete their is always one chart that displays out side of its TAB in the top left corner of the screen. If the user can some how click on the tab that contains that chart it will reposition itself. I have attached a screen shot of how it looks when initially displayed.
Hello wltaylor,
Maybe one possible reasons for this behavior could be if you have a chart with wrong Parent, but I could not be sure without to see the sample code. If you are able please upload your sample and I`ll be glad ot research your issue. If you have any questions, feel free to write me
Regards
setting the parent did not change anything. I ended up just having to cycle though the tabs making each one visible so that it would position the controls correctly. If I had many tabs with lots of graphs this would not be a solution, but since I only have 2 or 3 at a time this works.
For i = 0 To TabControl.Tabs.Count - 1 TabControl.SelectedTab = TabControl.Tabs(i)NextTabControl.SelectedTab = TabControl.Tabs(0)