Form position on the screen

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Can you please tell me what's the Syntax to Open One form
on the top left Corner of the screen and one on the right
top Corner
Thank you
 
Can you please tell me what's the Syntax to Open One form
on the top left Corner of the screen and one on the right
top Corner
Thank you

if you mean: screen=Access-Screen then

docmd.openform "MyForm"
docmd.movesize 0,0

or in the open event of the form
Me.move 0,0
 
Back
Top