Windows Formda Msdos Çalıştırma
Formunuza 1 adet textBox,richTextBox ve Button ekleyin.
Aşağıdaki şekili inceleyin.
Şekil 1
private void button1_Click(object sender, EventArgs e)
{
System.Diagnostics.Process islem;
islem = new System.Diagnostics.Process();
string Par1 = "/c " + textBox1.Text;
islem.StartInfo.FileName = "cmd";
islem.StartInfo.Arguments = Par1;
islem.StartInfo.CreateNoWindow = true;
islem.StartInfo.RedirectStandardOutput = true;
islem.StartInfo.UseShellExecute = false;
islem.Start();
richTextBox1.Text = islem.StandardOutput.ReadToEnd();
}
//Bir sonraki makalede buluşmak üzere. Bahadır ŞAHİN