Private Sub Form_Resize()

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

Guest

Private Sub Form_Resize()
Hi,
How can I resize the controls in the detail part of a form?
Me.Width ?
Detail.Height ?

control.Width += Me.Width new - Me.Width old???
 
yael said:
Private Sub Form_Resize()
Hi,
How can I resize the controls in the detail part of a form?
Me.Width ?
Detail.Height ?

control.Width += Me.Width new - Me.Width old???


Controls do not resize when a user resizes their form.

You can set a control's Width, Height, etc. as long as the
new setting does not exceed the section boundaries.

How are you trying to determine the new width?

The form's InsideWidth and InsideHeight properties provide
the form's current size.

I really can't be very specific without more details about
what effect you want to achieve.
 
Back
Top