Re: [Python.NET] Issues with running a phyton script from c#

2009-08-17 Thread Mahi Haile
Thank you!Either renaming the script to a .pyw or launching the app with pythonw.exe got rid of the problem. So, the block of code exactly the same with a minor change as: [option 1] p = new Process() p.StartInfo.Filename = path/to/script //Here use a .pyw instead of a .py file p.StartInfo.Argu

Re: [Python.NET] Issues with running a phyton script from c#

2009-08-17 Thread Maksim Kozyarchuk
Launching the application using pythonw.exe instead of python should resolve this. From: pythondotnet-bounces+mkozyarchuk=funddevelopmentservices@python.org To: [email protected] Sent: Sun Aug 16 00:05:05 2009 Subject: [Python.NET] Issues with ru

Re: [Python.NET] Issues with running a phyton script from c#

2009-08-17 Thread Craig Farrow
For running stand-alone python scripts you can rename your .py file to .pyw, which disables the console window when you run it. Does that achieve the same result from your C# code? Craig. 16/08/2009 4:05 p.m. dï, Mahi Haile pišdimiš: I am able to run a phyton script from C# using a code simil