Hi,
I have a task where I programatically will open 2 Explorer Windows in a minimized mode.
I have searched and the code I have come up with looks correct to me but what happens is that these 2 browser windows do open in a Normal mode.
That will be my first task to understand how to do.
using namespace System::Diagnostics;
ProcessStartInfo^ startInfo = gcnew ProcessStartInfo("IExplore.exe", "www.lycos.com");
startInfo->WindowStyle = ProcessWindowStyle::Minimized;
Process::Start(startInfo);
ProcessStartInfo^ startInfo2 = gcnew ProcessStartInfo("IExplore.exe", "www.yahoo.com");
startInfo2->WindowStyle = ProcessWindowStyle::Minimized;
Process::Start(startInfo2);