Missing page advance

  • Thread starter Thread starter Chrissy
  • Start date Start date
C

Chrissy

Can anyone offer help or suggestion to resolve this?


I call a report from a form using...

DoCmd.OpenReport "rpt1CityZipAllClients", acPreview
DoCmd.Maximize


My problem:

The page advance/selection control is missing from the report bottom on ONLY
ONE REPORT, all the other reports are fine. This one report issue occurs on
ONLY ONE COMPUTER, on all other computers' reports (all) are fine, including
the one with the issue.

If I comment out the DoCmd.Maximize command, the report is fine but does not
"fit"on the screen - it is popup and small. I would like this report to fit
screen as all the others do on this one machine.

Does anyone have an idea?

Thanks,
 
That is strange. Probably something wrong with that computer's video card or
settings. See if it is using some non-standard resolution. Try bringing the
resolution down or up a selection or two and see if that helps.

Also try minimizing Access and bringing it back up. See if it appears then.

If all your users have the same screen resolution, you could try MoveSize on
the Open event of the report.

DoCmd.MoveSize 1, 1, 14500, 9000

1, 1 puts it in the upper left corner. The other two numbers are width and
height. You'll need to play with them.
 

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