Tags-Etiketler
Bu kısımda sitemizde etiketlenmiş makaleleri toplu olarak bulabilirsiniz...
[ msdos ] /
Makaleler-Article(s)
msdos ile ilgili toplam 1 makale bulundu ! (A total of 1 article(s) about msdos was(were) found in all of articles!)
Article |
---|
Windows Formda Msdos Çalıştırma Formunuza 1 adet textBox,richTextBox ve Button ekleyin.
Aşağıdaki şekili inceleyin.
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 |
|
        Sitede yayınlanan makaleleri
Blog sitemizden de takip edebilirsiniz.
Sitemizdeki makaleleri RSS olarak takip edebilirsiniz.