I have added a TabControl to my Application lately. I need to set the tab
page text to bold when I change the index.
I have done someting like this without any result.
Can any one help me out
Private Sub TabControl1_Sel ectedIndexChang ed(ByVal sender As System.Object,
ByVal e As System.EventArg s) Handles TabControl1.Sel ectedIndexChang ed
CType(sender, TabControl).Sel ectedTab.Font = New Font(Me.Font.Bo ld,
FontStyle.Bold)
CType(sender, TabControl).Sel ectedTab.Text = "test"
End Sub
/Thanks in Advance
Prash
page text to bold when I change the index.
I have done someting like this without any result.
Can any one help me out
Private Sub TabControl1_Sel ectedIndexChang ed(ByVal sender As System.Object,
ByVal e As System.EventArg s) Handles TabControl1.Sel ectedIndexChang ed
CType(sender, TabControl).Sel ectedTab.Font = New Font(Me.Font.Bo ld,
FontStyle.Bold)
CType(sender, TabControl).Sel ectedTab.Text = "test"
End Sub
/Thanks in Advance
Prash
Comment