vote up 2 vote down star

What is the C# version of VB.net's InputDialog?

flag

8 Answers

vote up 4 vote down check

Add a reference to Microsoft.VisualBasic, InputBox is in the Microsoft.VisualBasic.Interaction namespace:

string input = Microsoft.VisualBasic.Interaction.InputBox("Prompt", "Title", "Default", 0, 0);
link|flag
Bah... fastest gun in the west haha.... anyway I looked up the actual signature in Object Browser and prompt comes before title, so its "Prompt" first and then "Title".. the last 2 number is X/Y coordinates to display the inputbox – chakrit Sep 18 '08 at 21:32
Thanks for the correction. – Ozgur Ozcitak Sep 18 '08 at 21:39
vote up 1 vote down

you need to add the microsoft.visualbasic dll in your references first.

link|flag
vote up 5 vote down

To sum it up:

  • There is none in C#.
  • You can use the dialog from Visual Basic by adding a reference to Microsoft.VisualBasic:

    1. In Solution Explorer right-click on the References folder.
    2. Select Add Reference...
    3. In the .NET tab select Microsoft.VisualBasic
    4. Click on OK

Then you can use the previously mentioned code:

string input = Microsoft.VisualBasic.Interaction.InputBox("Title", "Prompt", "Default", 0, 0);

That said, I suggest that you consider the need of an input box in the first place. Dialogs are not always the best way to do things and sometimes they do more harm than good - but that depends on the particular situation.

link|flag
You can use the dialog from C# by adding that reference, too. – Joel Coehoorn Sep 19 '08 at 13:27
Input boxes are a godsend for testing ui... – Mladen Mihajlovic Apr 16 at 17:35
Yeah, they are. But it seems to me that in most cases they're bad in the shipping code. – Tomas Sedovic Jul 9 at 14:35
vote up 1 vote down

Add reference to Microsoft.VisualBasic and use this function:

string response =  Microsoft.VisualBasic.Interaction.InputBox("What's 1+1?", "Title", "2", 0, 0);

The last 2 number is an X/Y position to display the input dialog.

link|flag
vote up 0 vote down

AFAIK there isn't one and good thing too.

Why would you want it? Write a PROPER dialog.

link|flag
vote up 2 vote down

There isn't one. If you really wanted to use the VB InputBox in C# you can. Just add reference to Microsoft.VisualBasic.dll and you'll find it there.

But I would suggest to not use it. It is ugly and outdated IMO.

link|flag
I think you are being too kind. It's far more ugly and outdated than that! – BlackWasp May 2 at 17:29
vote up 1 vote down

You mean InputBox? Just look in the Microsoft.VisualBasic namespace.

C# and VB.Net share a common library. If one language can use it, so can the other.

link|flag
vote up 0 vote down

There is no such thing: I recommend to write it for yourself and use it whenever you need.

link|flag

Your Answer

Get an OpenID
or

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