How do I change the tabpage being displayed in my tabcontrol programmatically?
Either by tabControl1.SelectedIndex which is an integer or if you have a reference to a particular tab, tabControl1.SelectedTab.
If you wanted the first one selected:
tabControl1.SelectedIndex = 0;