I am using System.Windows.Forms but strangely enough don\'t have the ability to create them.
System.Windows.Forms
How can I get something like a javascript prompt dialog, wi
There is no such thing natively in Windows Forms.
You have to create your own form for that or:
use the Microsoft.VisualBasic reference.
Microsoft.VisualBasic
Inputbox is legacy code brought into .Net for VB6 compatibility - so i advise to not do this.