Report formatting (Landscape)

  • Thread starter Thread starter GP
  • Start date Start date

GP

New member
Local time
Today, 16:30
Joined
Sep 25, 2001
Messages
6
Can anybody assist?:

I have a report that always reverts back to the 'portrait' format, even though the report was set up as 'Landscape' when going through the "Report Wizard". It seems to work initially, but always reverts back to 'portrait' eventually.

I've tried going to "page setup" when the report is open, setting to 'Landscape' (and subsequently saving), but it always reverts back to portrait.

Help please!!

GP

[This message has been edited by GP (edited 10-04-2001).]
 
Thanx guys.
I was under the impression that 'Name AutoCorrect' was a facilty to retain consistency in Report/Query naming strategies; does it apply to formatting as well?

If so, (and that will solve my problem) can you tell me how to disable this feature?

Cheers!!

GP
 
I think that the "Name AutoCorrect" problem could safely be called a "bug"...

To turn work with it in code, use Application.SetOption:

Public varTrackSetting as Variant
Public varPerformSetting As Variant
Public varLogSetting As Variant
Public strTrackAC As String = "Track name AutoCorrect info"
Public strPerformAC As String = "Perform name AutoCorrect"
Public strLogAC As String = "Log name AutoCorrect changes"
Public strOpenAC As String = "Default Open Mode for Databases"

' Save the current setting
varTrackSetting = Application.GetOption(strTrackAC
varPerformSetting = Application.GetOption(strPerformAC)
varLogSetting = Application.GetOption(strLogAC)
varOpenSetting = Application.GetOption(strOpenAC))

' Turn Name AutoCorrect off

Application.SetOption strTrackAC, False
Application.SetOption strLogAC, False
Application.SetOption strPerformAC, False
Application.SetOption strOpenAC, False



[This message has been edited by Chris RR (edited 10-05-2001).]
 

Users who are viewing this thread

Back
Top Bottom