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

link|improve this question

1  
WPF, Silverlight, WinForms, WP7? – NickHeidke Jul 7 '11 at 18:05
@NickHeidke I am just making a VB.NET Executable. – Odinulf Jul 7 '11 at 18:11
@Odinuff: What kind of executable? Are you using System.Windows.Forms? System.Web.UI.WebControls? – IAbstract Jul 7 '11 at 18:17
@IAbstract The default in a Windows Forms application, which I would assume would thus be System.Windows.Forms.... – Odinulf Jul 7 '11 at 18:31
feedback

2 Answers

up vote 1 down vote accepted

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

link|improve this answer
I have no idea how to do that. How would I do that? – Odinulf Jul 7 '11 at 19:03
google for "creating custom controll vb.net" there are plenty posts about it. – aruss Jul 7 '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 7 '11 at 19:16
feedback

This CodeProject article includes an InputBox class in C#. You can easily convert the source in that article to VB.Net for a custom input box.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.