09-01-2003 07:44 PM
09-02-2003 10:53 AM
09-02-2003 06:42 PM
02-05-2015 09:49 AM
I could to modify the Child text. but it is too slow! I've attached the TreeExample.vi. How I can speed up the updating. I need it for a real time monitoring and there is no much time for updating the values. I use an array to show values, next to the tree and it is fast, but it is independant of tree.
02-05-2015 11:11 AM - edited 02-05-2015 11:14 AM
Pleeeeaaaasssseee don't use stacked sequence structures. Use flat sequence structures if you need to. And even then in your code you can eliminate most of them by using property nodes and error wires appropriately..
Look at https://decibel.ni.com/content/docs/DOC-4519. Use Defer Panel updates to speed up the execution when updating multiple tree control properties.
See attached modified VI.
02-05-2015 01:01 PM
Thank you so much RavensFan. The Defer Panel Update is good to speed up, I didn't know it.