|
-
February 5th, 2008, 10:07 AM
#1
System.Diagnostics.Process
Hi,
I have problem thats been driving me crazy lately,
I use the following code as a part of a larger application:
System.Diagnostics.Process proc = new System.Diagnostics.Process();
proc.EnableRaisingEvents = false;
proc.StartInfo.FileName = sFileName;
proc.StartInfo.WorkingDirectory = sWorkingDirectory;
proc.Start();
its supposed to be activating an exe file.
On 90% of the computers I installed it on, it works perfectly.
on the other 10% nothing happens...I mean absolutly nothing...
no error message no exception, nothing (I tried pretty much any variation that can create an error should the proccess fails to start, but nothing...)
has anyone encountered such behaviour before?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|