I have a tab control with 2 tab pages and a menu strip with 2 items. when I click item 1 in menuStrip, I want to view ONLY TAB PAGE 1.
I tried
Private Sub item1ToolStripMenuItem_Click(...)
TabPage2.Select()
TabPage2.Show()
TabPage2.Visible = True
TabPage1.Visible = False
End Sub