Why does the messagebox only show when the form loads, and not when a different tab is selected?
vb Code:
Private Sub TabPage1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles tabBox.TabIndexChanged MessageBox.Show(tabBox.TabIndex) End Sub


Reply With Quote
You need to interact with the SelectedIndexChanged event instead.