I found two solutions to this problem:
1: Go to Tools/Options/General, Uncheck "Track Name Autocorrect Info" located on the left side at about the middle (I also use Acess XP SP2)
OR
2: Have a program run at startup which changes the orientation on a blank report and then closes it down. I fount that if you do this once you do not see a problem with the orientation again.
Public Function OrientCorrect()
On Error GoTo ErrHandler
DoCmd.OpenReport "rptSetOrientation", acViewDesign
DoCmd.RunCommand acCmdSelectReport
DoCmd.RunCommand acCmdWindowHide
Reports("rptSetOrientation").Printer.Orientation = acPRORLandscape
DoCmd.OpenReport "rptSetOrientation", acViewPreview
DoCmd.Close acReport, "rptSetOrientation", acSaveNo
ExitHere:
Exit Function
ErrHandler:
Resume ExitHere
End Function
Create a blank report named "rptSetOrientation". The report will flash quickly at startup but will immediately go to hidden mode to keep it transparent from the user.
Hope it helps,
DP