Resizing an input box?

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

Guest

Is there a way to resize an input box...maybe something like

inputbox.Shape.Select True ?????
 
Are you talking about a textbox? If so, try this:

Private Sub CommandButton1_Click()
TextBox1.Width = 100
TextBox1.Height = 100
End Sub
 
No, I actually have an input box, where you input a value. It works like a
message box....
 
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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top