Window size problem

T

twa

When I open a database I get only a small window in which
I cannot see all of my queries or reports. It is
necessary for me to maximize the window to display all of
them. Then when I run a report I again get my results in
a partial window and must maximize the window to see a
whole page view. This is really frustrating, as I run
many reports daily, and I have been unable to figure out
why this occurs.

Would appreciate someone's knowledgeable guidance!

Thank you.
 
L

Luiz Cláudio

Hi Twa,

if you are running Access XP or 2003, you can try Move method on Open event:

Private Sub Form_Open(Cancel As Integer)
'Posiciona o form na tela
DoCmd.Restore
Me.Move 600, 0, 10500, 7200
End Sub

In Access XP, it works also for reports. In Access 2003, you'll have to
install Service Pack 1 first, otherwise it won't work for reports.

Luiz Cláudio C. V. Rocha
São Paulo - Brazil
 
Top