Prev: Disable Keyboard Input
Next: WOORDEN
From: Chrissy on 26 Feb 2010 10:35 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, -- Chrissy
From: Jerry Whittle on 26 Feb 2010 14:26 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. -- Jerry Whittle, Microsoft Access MVP Light. Strong. Cheap. Pick two. Keith Bontrager - Bicycle Builder. "Chrissy" wrote: > 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, > -- > Chrissy
|
Pages: 1 Prev: Disable Keyboard Input Next: WOORDEN |