Tagged Questions

0
votes
3answers
65 views

Sending input/getting output from a console application (C#/WinForms)

I have a form with 3 controls: A textbox for the user to enter commands to send to a console application, A button to confirm the commands to be sent and A read-only textbox to d …
1
vote
2answers
59 views

perl.exe cannot be called by ProcessStartInfo

Hello: I am trying to get the following code to work so I can call a perl script from my c# program. I am developing using visual stdio 2008 on xp service pack3. myProcess …
1
vote
3answers
628 views

Hanging process when run with .NET Process.Start — what’s wrong?

I wrote a quick and dirty wrapper around svn.exe to retrieve some content and do something with it, but for certain inputs it occasionally and reproducibly hangs and won't finish. …
0
votes
2answers
410 views

Win32Exception: The directory name is invalid

I'm trying to run a process as a different user that has Administrator privilege in 2 different computers running Vista and their UAC enabled but in one of them I get a Win32Except …
1
vote
3answers
301 views

How do you run a program you don’t know where the arguments start?

The subject doesn't say much cause it is not easy to question in one line. I have to execute a few programs which I read from the registry. I have to read from a field where somebo …
0
votes
1answer
2k views

C# Start a new MailTo Process and HTML URL Encoding

I have created a new MailTo extension method for the Process class which just fills the Process with a new ProcessStartinfo which contains the required mailto arguments. I have cre …
0
votes
0answers
369 views

Starting Firefox using Process.Start: Firefox not starting when you set Usename and Password

Hi there. When I try to start Firefox using Process.Start and ProcessStartInfo (.NET) everything seems to work fine. But when I specify a username and password of another account …
2
votes
2answers
1k views

ProcessStartInfo hanging on “WaitForExit”? Why?

I have the following code: info = new System.Diagnostics.ProcessStartInfo("TheProgram.exe", String.Join(" ", args)); info.CreateNoWindow = true; info.Windo …