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
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