[python-win32] How to send an array of clusters to labview??

2005-06-28 Thread john taylor
hi all, i am using win32com to call labview from python over COM and i am using early-bounding. i want to set the value of a control element "array of cluster" in a VI, and the control in the VI is an array of clusters, which has the structure (integer, integer, string). CODE: ... >>> paramName

[python-win32] threading in python

2005-06-28 Thread john taylor
hi, anybody has called two VIs in parallel?? somehow like this: * import win32com.client import thread lv = win32com.client.Dispatch("LabVIEW.Application") def start(): vi2 = lv.GetVIReference("p2.vi") vi2.Run() thr = thread.start_new_th