F fredg Jun 29, 2005 #2 Is there a way to designate where on the screen a form opens? Thanks, Keith Click to expand... Look up the MoveSize method in VBA help. To place a form 2" from the left screen edge and 3.5" from the top place the following code in the Form's Load event: DoCmd.MoveSize 2*1440, 3.5*1440 All measurements are in Twips, 1440 per inch.
Is there a way to designate where on the screen a form opens? Thanks, Keith Click to expand... Look up the MoveSize method in VBA help. To place a form 2" from the left screen edge and 3.5" from the top place the following code in the Form's Load event: DoCmd.MoveSize 2*1440, 3.5*1440 All measurements are in Twips, 1440 per inch.