Autosize text box and userform together.

mexmanz

Board Regular
Joined
Sep 19, 2005
Messages
72
Hi,

I am using the following code to autosize a textbox on my userform.

I would like to know if it is possible to also:

1. Autosize the actual form so if the textbox becomes 2,3 or 4 lines everything shifts down and the form expands vertically to accomodate.

2. Limit the auto expanding textbox to 4 lines maximum (or limit the total number of characters allowed)?


Private Sub txtChangeDescription_Change()

txtChangeDescription.Width = 360
' to restrict autosize to vertical
If txtChangeDescription.Height > 75 Then
txtChangeDescription.Height = 75
txtChangeDescription.AutoSize = False
'plus
'MultiLine = True
'AutoSize = True
'WordWrap = True
End If
End Sub

thank you
Andrew
 
Last edited:

Excel Facts

Can Excel fill bagel flavors?
You can teach Excel a new custom list. Type the list in cells, File, Options, Advanced, Edit Custom Lists, Import, OK

Forum statistics

Threads
1,215,743
Messages
6,126,609
Members
449,321
Latest member
syzer

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top