May 13, 2004 #1 rundmc Programmer Jan 16, 2003 15 US Hi Is there any way you can use a command button to cause the current TabPage to switch focus to the next Tab Page in the sequence? Thanks in advance rundmc
Hi Is there any way you can use a command button to cause the current TabPage to switch focus to the next Tab Page in the sequence? Thanks in advance rundmc
May 13, 2004 2 #2 RiverGuy Programmer Jul 18, 2002 5,011 US Code: Try TabControl1.SelectedTab = TabControl1.TabPages(TabControl1.SelectedIndex + 1) Catch TabControl1.SelectedTab = TabControl1.TabPages(0) End Try Upvote 0 Downvote
Code: Try TabControl1.SelectedTab = TabControl1.TabPages(TabControl1.SelectedIndex + 1) Catch TabControl1.SelectedTab = TabControl1.TabPages(0) End Try