I did what is said here http://www.pcreview.co.uk/forums/thread-1899493.php but in intellisense I only get Microsoft.VisualBasic.VBCodeProvider ???
step 1: Add refernce Microsoft.VisualBasic
step 2:
private void button1_Click(object sender, EventArgs e)
{
string result = Microsoft.VisualBasic.Interaction.InputBox("kkk","text", "", 10, 20);
MessageBox.Show(result);
}