I am trying to use an OpenFileDialouge control to select a folder, so that it can select a file and output it into my code below:
private void button18_Click(object sender, EventArgs e)
{
Process.Start("test.exe", <openfiledialouge-output-here> );
}
So would contain the selected file
Use FolderBrowserDialog to select folder, not OpenFileDialog.