Thanks MajP,
I tried using your coding, but received a compile error on the following:
Compile error:
Method or data member not found
Private Sub Form_Load()
DoCmd.MoveSize 0, 0, 6650, 5200
' Create an instance of our FormatByCriteria class
Set TB = New clsTabs
' You MUST set the CriteriaControl prop
TB.TabControl = Me.TabCtl
' You MUST set the BackGround control
' used to display the current pages background color
TB.BGControl = Me.RecBG
' Parent Form
TB.TabForm = Me
' Set the desired Rotation amount
TB.RotateDegree = 90
' Create the Tabs
TB.MakeTabs
End Sub
Any suggestions?