how to put a form displayed in a fixed location?

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

Guest

i have 3 forms that i need to display on the screen simultaneously. is there
a way to set location and size of these forms? thanks much! kim.
 
Kim:

Check DoCmd.MoveSize in help. It will allow you to position and size any
form. Place the command in each form's open event. You may also want to
consider adding the code to the forms' OnResize event, too.

Tait Milliken
 
Back
Top