How do I control the initial size of a datasheet form

  • Thread starter Thread starter Dan Neely
  • Start date Start date
D

Dan Neely

The width property appears to be ignored and there isn't a height one
visible. Having a form with only 2 relatively narrow columns open at
~1500pixels wide looks really bad.
 
Dan said:
The width property appears to be ignored and there isn't a height one
visible. Having a form with only 2 relatively narrow columns open at
~1500pixels wide looks really bad.


You can use:
DoCmd.MoveSize Me.WindowLeft, Me.WindowTop, 600, 1400
 
Back
Top