Moving Tabs Apart??

  • Thread starter evilcowstare via AccessMonster.com
  • Start date
E

evilcowstare via AccessMonster.com

Instead of having all the Tabs go from left to right is it possible to move
just one of them to the right-hand side???

Anyone know how??

I know you can change the size of the tabs I just want to try and move one
away from the others.
 
R

ruralguy via AccessMonster.com

You can turn off the tabs from the control and create your own where ever you
want.
 
E

evilcowstare via AccessMonster.com

How do you do that???

Thanks

You can turn off the tabs from the control and create your own where ever you
want.
Instead of having all the Tabs go from left to right is it possible to move
just one of them to the right-hand side???
[quoted text clipped - 3 lines]
I know you can change the size of the tabs I just want to try and move one
away from the others.
 
R

ruralguy via AccessMonster.com

On the Format tab of the property sheet for the TabCtl, set the Style to None
and then put Command buttons wherever you want that changes the TabIndex with:

Me.TabCtl1 = 0 for the first tab.
How do you do that???

Thanks
You can turn off the tabs from the control and create your own where ever you
want.
[quoted text clipped - 4 lines]
 
E

evilcowstare via AccessMonster.com

Ah ok
Thank You !
On the Format tab of the property sheet for the TabCtl, set the Style to None
and then put Command buttons wherever you want that changes the TabIndex with:

Me.TabCtl1 = 0 for the first tab.
How do you do that???
[quoted text clipped - 5 lines]
 
Top