Re: [python-win32] calling python as process from vb.net

2009-07-30 Thread niki
Pam Westphal wrote: starting the process *** dim p as new process p.StartInfo.FileName = "pythonw.exe" p.StartInfo.WorkingDirectory = "C:\Python25\work\" p.StartInfo.Arguments = "smooth_data_kiosk2.py " & datafields.Trim p.StartInfo.RedirectStandardOutput = True p.StartInfo.UseShellE

[python-win32] calling python as process from vb.net

2009-07-29 Thread Pam Westphal
I have a great python script that does quite a bit of statistical smoothing after reading data from a SQL table and then writes the results to a table. I don't really want to convert it into C. Currently I call the python script as a process from vb.net. About 1/2 of the time Python stops runnin