Hello
I have textbox1 on userform .I want wen write inside the textbox then should increase & decrease textbox1 based on filling inside textbox
this what I have but doesn't work
before when write number
as you see first pictur contains empty after 00
should be like this just slight space in right and left not big space . like fit columns inside sheet
thanks guys
I have textbox1 on userform .I want wen write inside the textbox then should increase & decrease textbox1 based on filling inside textbox
this what I have but doesn't work
VBA Code:
Private Sub UserForm_Initialize()
Set txtNew = Controls.Add("Forms.textbox1")
TextBox1.Left = 36
TextBox1.Top = 42
TextBox1.MultiLine = True
TextBox1.WordWrap = True
TextBox1.AutoSize = False
TextBox1.Width = 108
TextBox1.SetFocus
TextBox1.Height = 30
End Sub
before when write number
as you see first pictur contains empty after 00
should be like this just slight space in right and left not big space . like fit columns inside sheet
thanks guys