Here's my code

Code:
Process^ myProcess = gcnew Process;
myProcess->StartInfo->FileName = "c:\\myfile.htm";
myProcess->Start();
This works as expected when I run from the debugger. Nothing happens when not under the debugger.

It's Visual 2010 C++

Anyone seen this? Ideas?

Thanks

Chuck