Moving Between Tabs

I have a windows form (VB 2005) and have six tabs. I would like the user to be able to move between tabs by clicking on previous/next buttons as well as the tabs themselves. This is my first use of the tab control, so any help would be appreciated.

Larry

[268 byte] By [ljc77] at [2008-1-4]
# 1
This should work the same for C#, and this is how I do it.

private void nextTabFromLoadButton_Click(object sender, EventArgs e)
{
tabControl1.SelectedIndex++;
}

Jordanna at 2007-10-3 > top of Msdn Tech,Windows Forms,Windows Forms General...