TabControl Question

  • Thread starter Thread starter Phil Kelly
  • Start date Start date
P

Phil Kelly

Hi!

Still relatively new to all this!

I have an application that has a TabControl, and 4 tab pages.

I want to have buttons on each tab that automatically load the next tab
page, as if following a process.

Can this be done???

Thanks

Phil
 
* "Phil Kelly said:
I have an application that has a TabControl, and 4 tab pages.

I want to have buttons on each tab that automatically load the next tab
page, as if following a process.

Can this be done???

\\\
Me.TabControl1.SelectedIndex = _
(Me.TabControl1.SelectedIndex + 1) Mod Me.TabControl1.TabPages.Count
///
 
Back
Top