Window size problem

  • Thread starter Thread starter twa
  • Start date Start date
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.
 
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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top