Hi Gents,
How does one dymanically change the size of an array? myArray.Dimension = x; doesnt work
Also, how does one change the value of an array from within a native() block of code? As...
var device = EmWiApp._GetAutoObject( EmWiApp.Application.Device );
device.myArray[1] = 0;
... doesn't work. Yet...
device.myVar = 0;
...does work.