You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

26 lines
566 B

using System.Diagnostics;
namespace Lanzador
{
public partial class Form1 : Form
{
Process miProceso;
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
miProceso = new Process();
miProceso.StartInfo.FileName = @"Notepad";
miProceso.StartInfo.Arguments = argumento.Text;
miProceso.Start();
}
private void argumento_TextChanged(object sender, EventArgs e)
{
}
}
}

Powered by INFORMATICA.FP.EDU.ES.