On a UserForm there are 2 button. Normal & resize Userform.
I would like to change the width of the UserForm left side (border) not the right side.
How to do this?
[vba]
Private Sub CommandButton2_Click() '
Do While Me.Width <= 400
Me.Width = Me.Width + 15
Loop
End Sub
[/vba]