I can set the tab text during Initialization easily enough:
Private Sub mdiManager_InitializeTab(ByVal sender As Object, ByVal e As Infragistics.Win.UltraWinTabbedMdi.MdiTabEventArgs) Handles mdiManager.InitializeTab
e.Tab.Text = "Tab Text"
End Sub
But once the form is open, how can I change the text? Me.Text doesn't get the job done.
TIA!!
Hello David R Stark,
You could change a tab on a button click for example. Something similiar to this:
private void ultraButton1_Click(object sender, EventArgs e) { ultraTabbedMdiManager1.TabGroups[0].Tabs[0].Text = "Example"; }
Please do not hesitate to contact us if you need any additional assistance.