04-11-2023 02:24 AM
I'm learning NI TestStand, and I'm having issues with arrays. I have an array of size 10 which is of type 'Container.' I'm trying to have a function which checks the size of this local array and set that equal to a Local integer variable. I found the link below, but it doesn't work for me at all and I keep getting an error message saying "Method GetDimensionSizes() does not exist in interface "Array Dimensions"
04-11-2023 02:38 AM
Hi,
Please try this :
Locals.size=Locals.container1.GetNumElements()
Ravi