How to display page tabs vertically?

  • Thread starter Thread starter Adnan
  • Start date Start date
A

Adnan

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
 
Adnan said:
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


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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top