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

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

2009-08-15 Thread Mahi Haile
I am able to run a phyton script from C# using a code similar to: p = new Process() p.StartInfo.Filename = path/to/script p.StartInfo.Arguments = string_with_arguments p.StartInfo.CreateNoWindow = true p.Start() I am not interested in the script outcomes since the script just starts a Tk app wit