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)
 
B

BBran

Thank you very much for your help!


Arvin Meyer MVP said:
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)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top