10-01-2012 09:17 AM
Hi,
is it possible to measure amount of memory allocated by the specific control in VI (on front panel)? I have more big controls on the front panel and would like to measure how much memory they allocate.
Thanks!
10-02-2012 08:06 AM
Memory for controls is a fuzzy number that includes several things:
All of these can be different. You can find out how much memory the code takes by looking at the memory usage of the VI before and after adding the control (use the VI properties dialog). The data contained by the control and transfer buffer could be eithe constant, in the case of scalars, or widely variable, in the case of arrays and charts/graphs. The same VI properties dialog will give you this information, as well, or you can use your operating system process monitor to see differences dynamically as you step through code.
10-03-2012 12:23 AM
I had in mind the data contained by the control.