10-13-2003 02:17 AM
10-13-2003
06:01 PM
- last edited on
07-01-2026
09:26 AM
by
Content Cleaner
Hi,
When you are handling arrays in the function panels the most common way of doing it is to create a control with the datatype int[],this will actually pass a pointer to the array that you can use in the dll. It is common to have another input control that defines the number of elements in the input array, most CVI functions that handle arrays do it that way. As for the default values, you can't define those in the function panel since you only pass the pointer to the array. what you can do is define those default values in the dll.
To pass structures through the function panel there is a good posting that I found around here:
custom type in Function Panels
I hope this helps.
let me know if you have questions.
Regards,
Juan Carlos
N.I.
10-13-2003 09:22 PM
10-14-2003 09:37 AM