03-15-2006 03:31 PM
03-15-2006 03:53 PM
I see that you don't have much experience in LabVIEW, but you do have worked hard.
The biggest mistake is that LabVIEW has parallallelisme built in.
All the statements are in fact executed at almost the same time and in the way this is programmed you cannot tell what is sent first to the instrument. The best way to handle this is to connect the error out of the first write to the error in of the second one and so connect all write and read statements in the correct order.
Another feature of this sequencing by wiring is that you see the first error and all other write and read statements only pass the error.
So the error message then pinpoints to the first error. Especially nice when looking with the debug lamp on what happens and where excatly the errror starts.
If yo don't understand jsut ask again
03-15-2006 04:19 PM
03-16-2006 02:05 AM