Tabbed form

D

Damon Heron

Q: is there a way to have a tabbed form with the tabs invisible, and use
command buttons at the bottom of the form to tab thru the pages instead?
 
R

Rick Brandt

Damon said:
Q: is there a way to have a tabbed form with the tabs invisible, and
use command buttons at the bottom of the form to tab thru the pages
instead?

Set the TabStyle to "None". Have your buttons set the Value property of the
TabControl to switch pages. The page index numbers start with zero.
 
D

Damon Heron

Thanks for the help. It works great!

--
Damon

Rick Brandt said:
Set the TabStyle to "None". Have your buttons set the Value property of
the TabControl to switch pages. The page index numbers start with zero.
 
Top