FORM LEVEL Properties.

  • Thread starter Thread starter Giri Palakodeti
  • Start date Start date
G

Giri Palakodeti

How can we set the below properties of a FORM programatically?
Left
Top
Right
Bottom

Does Form has Left, TOP ? I could not see them in Design View?
 
Forms have none of those properties.
You might want to look in VBA Help at the MoveSize method to see if it will
suit your needs.
 
Giri said:
How can we set the below properties of a FORM programatically?
Left
Top
Right
Bottom

Does Form has Left, TOP ? I could not see them in Design View?


No. Form's have WindowTop and WindowLeft properties.

If you want to position a form at a specific location, use
the Move method.

The right side of a form is approximately it's WindowLeft +
Width. Similarly for the bottom.
 
Back
Top