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.