Vertical Page Tabs

B

Billiam

Is it possible to produce vertical page tabs in Access 2007? I would like my
form to appear like a binder with index dividers on the right hand side.

Thanks,
Billiam
 
B

Brendan Reynolds

Billiam said:
Is it possible to produce vertical page tabs in Access 2007? I would like
my
form to appear like a binder with index dividers on the right hand side.

Thanks,
Billiam


There's no built-in option to change the orientation of the tab control, but
you could set the Style property of the tab control to None (so that it
doesn't display any visible tabs) then use a column of command buttons or
labels down the right side of the form to set the Value property of the tab
control to display the relevant page ...

Private Sub cmdPageOne_Click()
Me.tabTest.Value = 0
End Sub

Private Sub cmdPageTwo_Click()
Me.tabTest.Value = 1
End Sub

Private Sub cmdPageThree_Click()
Me.tabTest.Value = 2
End Sub

Note that the pages collection is zero-based, so set the Value property to 0
to display the first page, 1 to display the second page, etc.
 
B

Billiam

Hi Brendan,

Sorry, I did see another post by you which I had missed before on this
topic. I am going to try this out today. I have never done anything like this
before as I am new to Access. I promise to rate the response and add anything
that might help a newbie like me! Thanks again for your help.
Billiam
 

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

Top