"Adnan" <(E-Mail Removed)(donotspam)> wrote in message
news:B06E82F0-ED1C-4E9A-B65C-(E-Mail Removed)...
> 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
>
> --
> Please post all your inquiries on this community so we can all benefit -
> Thank you!
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
--
Brendan Reynolds
|