What is the C# version of VB.net's InputDialog?
|
|
Add a reference to Microsoft.VisualBasic, InputBox is in the Microsoft.VisualBasic.Interaction namespace:
|
||||
|
|
|
you need to add the microsoft.visualbasic dll in your references first. |
||
|
|
|
|
To sum it up:
Then you can use the previously mentioned code:
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. |
||||||
|
|
|
Add reference to
The last 2 number is an X/Y position to display the input dialog. |
||
|
|
|
|
AFAIK there isn't one and good thing too. Why would you want it? Write a PROPER dialog. |
||
|
|
|
|
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. |
||
|
|
|
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. |
||
|
|
|
|
There is no such thing: I recommend to write it for yourself and use it whenever you need. |
||
|
|
