Of course I wasn't calling it out in the Open event! That fixed it!
Sometimes I wonder about myself! Thanks!
In your example of VBA, what do your dimensions represent? In the macro
sizes read: 2", 2", 4.5", and so on.
Slez
>>I have a macro with 2 steps: OpenForm & MoveSize
>>
[quoted text clipped - 8 lines]
>DoCmd.MoveSize 123, 5, 11750, 4700
>End Sub
Douglas J. Steele - 15 Dec 2006 15:03 GMT
When you're using the MoveSize method (as opposed to the MoveSize action),
all arguments are expressed in twips. There are 1440 twips to the inch, or
567 twips to the centimeter.
If you're currently thinking in inches, just multiple the inch value by
1440.

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> Of course I wasn't calling it out in the Open event! That fixed it!
> Sometimes I wonder about myself! Thanks!
[quoted text clipped - 17 lines]
>>DoCmd.MoveSize 123, 5, 11750, 4700
>>End Sub