calculator

B

BBran

Hello,

I am using Access 2007 on XPSP2. I obtained a calculator form from someone
named "zfrmcalc". I would like to find out if there is any way to move it's
default position on the screen, when it opens. I can move it with the mouse
but would like to be able to move it's default position on the screen, when
it opens.

Any ideas.
 
A

Arvin Meyer MVP

If it's an Access form, go into Design View an write a sub in the form's
Open event:

Private Sub Form_Open(Cancel As Integer)
DoCmd.MoveSize 1440, 2880
End Sub

That moves it 1" from the right (1440 Twips) and 2" from the top (2880
Twips)
 
Top