3

How can I make the textbox in a VB Inputbox larger?

IAbstract
  • 19,551
  • 15
  • 98
  • 146
Odinulf
  • 571
  • 2
  • 7
  • 18

2 Answers2

2

You can't modify the input box, just create your own custom input box.

aruss
  • 354
  • 1
  • 13
  • I have no idea how to do that. How would I do that? – Odinulf Jul 07 '11 at 19:03
  • google for "creating custom controll vb.net" there are plenty posts about it. – aruss Jul 07 '11 at 19:07
  • 1
    Basically you just create your own form that looks/acts like the inputbox control. With that you will be able to modify the height and width, really anything you want – Gage Jul 07 '11 at 19:16
0

You can use multiline textbox if thats what you mean. Or you can create a new inputbox form and add a multiline textbox to it and set the anchor to all directions, so if you change the form size it will change its size as well.

Or you could use a normal textbox and just change the font size.

Milot25
  • 335
  • 1
  • 6
  • 14