I am using System.Windows.Forms but strangely enough don\'t have the ability to create them.
How can I get something like a javascript prompt dialog, wi
Add reference to Microsoft.VisualBasic and use this into your C# code:
string input = Microsoft.VisualBasic.Interaction.InputBox("Prompt",
"Title",
"Default",
0,
0);
To add the refernce: right-click on the References in your Project Explorer window then on Add Reference, and check VisualBasic from that list.