How do I set tab pages be displayed vertically (left side). By default, they
are set on top, I need them on the left side. Please assist.
Thank you for any tip/help provided.
Adnan

Signature
Please post all your inquiries on this community so we can all benefit -
Thank you!
Brendan Reynolds - 16 Jan 2008 11:40 GMT
> How do I set tab pages be displayed vertically (left side). By default,
> they
[quoted text clipped - 3 lines]
>
> Adnan
The tab control doesn't have any built-in feature to do that. You could set
the Style property of the tab control to None so that it has no tabs, and
place a column of command buttons down the side to change pages. The code
for the command buttons would be something like this ...
Private Sub cmdOne_Click()
Me.tabTest.Value = 0
End Sub
Private Sub cmdTwo_Click()
Me.tabTest.Value -1
End Sub

Signature
Brendan Reynolds