Textbox in Msgbox?

Conejo

Well-known member
Joined
Jul 24, 2013
Messages
65
Location
USA
Programming Experience
1-3
Hi I want to ask the user for some input at form load and I have been searching for a way to display a textbox in a mesaggebox, I know this is possible in vbscript but is it in VB.Net? I may just create a custom dialog though...
 
A message box is what it is: a box that displays a message and accepts a button click. If you want something built in that can accept input through a text box then you can use the InputBox function, but I would tend to recommend against that. Creating your own form the way you want it it is the best option.
 
Back
Top