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.
 

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

Back
Top