Issue
There is any command line or .NET method that runs a process in the background hiding any window it tries to open?
Already tried:
var process = new Process()
{
StartInfo = new ProcessStartInfo()
{
CreateNoWindow = true,
WindowStyle = ProcessWindowStyle.Hidden,
FileName = TheRealExecutableFileNameHere
}
}
process.Start();
With no success so far
Solution
Check out the Matlab Engine.
There's even an interesting article on CodeProject, if this approach fits your needs.
Answered By - Kenan E. K. Answer Checked By - Clifford M. (WPSolving Volunteer)