G Guest Jan 14, 2005 #1 Is there a way to resize an input box...maybe something like inputbox.Shape.Select True ?????
C Claud Balls Jan 14, 2005 #2 Are you talking about a textbox? If so, try this: Private Sub CommandButton1_Click() TextBox1.Width = 100 TextBox1.Height = 100 End Sub
Are you talking about a textbox? If so, try this: Private Sub CommandButton1_Click() TextBox1.Width = 100 TextBox1.Height = 100 End Sub
G Guest Jan 14, 2005 #3 No, I actually have an input box, where you input a value. It works like a message box....
N Norman Jones Jan 14, 2005 #4 Hi JJ, I do not believe that you can change the size of the built-in Input Box. You could, however, design a Userform to look and operate as you would like the input box to.
Hi JJ, I do not believe that you can change the size of the built-in Input Box. You could, however, design a Userform to look and operate as you would like the input box to.