I am currently trying to import a list of executables from a text file into a statement:
private void button19_Click(object sender, EventArgs e)
{
Process.Start("test.exe", <Process Name Here>);
}
So If a text file named process.txt contained:
notepad.exe
calc.exe
I would end up with:
Process.Start("test.exe", notepad.exe);
and
Process.Start("test.exe", cacl.exe);
This ought to be what you’re after, Michael.