0
Können Sie mir bitte eine Anwendung (Notizblock) oben auf meinem Formular öffnen?Öffnen Sie das NotePad in mystischer Form oben
private void button1_Click(object sender, EventArgs e)
{
Process N = new Process.Start(@"notepad.exe");
N.ShowDialog(this);
}
Ich versuche das, ist aber nicht korrekt. Also, wie kann ich Notepad.exe oder Word.exe auf meinem Formular als ShowDialog bitte öffnen?
Herzlich