I have a form that consists of 1 TabControl with 2 TabPages.
When one button is clicked on my main form, the first tab page needs to become visible.
When the second button is clicked, the second tab page needs to become visible.
I have tried using
tabControl1.TabPages[0].Focus(); and BringToFront();
But with no luck, the tab page 0 comes up anyway.
How can I fix this?
Thanks,