I know that it is Microsoft.VisualBasic and this is where I need help. Should be quick question I am sure.
Thank you,
Garrett
Printable View
I know that it is Microsoft.VisualBasic and this is where I need help. Should be quick question I am sure.
Thank you,
Garrett
What do you mean by where is it located?
If you mean how do you get one to appear on the screen, you just tie
to an event in your code.Code:InputBox(parameters)
Sorry, I am actually using it in C#, I guess that is an important piece.
Don't use it at all.
InputBox is almost never the right solution to any problem. It is very restrictive in appearance, and you can't tell the difference between the OK and Cancel buttons. There is almost never a good reason to use it rather than creating your own form to do the same thing.