11-02-2006 09:49 AM - edited 11-02-2006 09:49 AM
Message Edited by BHTC on 11-02-2006 09:52 AM
11-02-2006 10:30 AM
I can't look at your code, but the most likely reason is large memory consumption. If you have an array which keeps growing it will eventually force LV to keep growing the amount of memory it needs. At one point, the OS will have to start using your hard drive as virtual memory and that would slow things down and make your CPU usage high. The display you mentioned sounds like a likely culprit. Just go over your code and make sure that you don't have places where you build arrays, strings or graph without keeping their size down.
You can also use the profiling tools in Tools>>Advanced to see where your memory consumption is.
You can look at the memory consumption of LV in the Processes tab of the task manager (assuming you're on windows).
11-02-2006 10:40 AM
11-02-2006 11:01 AM
11-02-2006 12:58 PM
11-07-2006 02:54 AM
11-08-2006 02:42 PM - edited 11-08-2006 02:42 PM
Message Edited by Doug M on 11-08-2006 02:43 PM
11-08-2006 04:33 PM