Good morning, everyone. I'm trying to use VBA to set the height and width of my reports. I've tried 3 different things in the Report Load event, and none have worked. This got me an error message:
Me.InsideWidth = 8 * 1440
Me.InsideHeight = 6.2 * 1440
These didn't give me an error message, but they didn't work either:
Me.Width = 8 * 1440
Me.Detail.Height = 6.2 * 1440
and...
DoCmd.MoveSize 1100, 550, 8, 6.2
Any idea what I'm doing wrong here? Thanks for your help.
Matthew