FORM DETAIL WIDTH

  • Thread starter Giri Palakodeti
  • Start date
G

Giri Palakodeti

How Can I programatically change Form Detail Width

' Comment Me.Detail.Width

Forms(rs1("Form")).Detail.Properties(rs1("ChangeProperty"))
= rs1("changeto_inches")

Also is Form's Left , Top, Right and Bottom are resolution specific to a PC.
Can i change those properties dynamically?
 
M

Marshall Barton

Giri said:
How Can I programatically change Form Detail Width

' Comment Me.Detail.Width

Forms(rs1("Form")).Detail.Properties(rs1("ChangeProperty"))
= rs1("changeto_inches")

Also is Form's Left , Top, Right and Bottom are resolution specific to a PC.
Can i change those properties dynamically?


I have no idea what you are trying to do here, but here's a
couple of ideas that might help:

Sections do not have a Width property.

You can change the width of a form by setting it's
InsideWidth property.

You can use the MoveSize statement to position a form within
the Access window.

You should also become familiar with the WindowLeft and
WindowTop properties.

See VBA Help for details about those statements and
properties.

Changing the resolution of a user's computer is a BAD THING

If you want to scale a form to a user's screen resolution,
the links on this page may be useful:
http://www.mvps.org/access/general/gen0002.htm
 

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

Top