I have designed a panel using Vector Panel Designer so I can display it in CANAlyzer.
Now I am trying to set the location of a Picture Box control based on the value of a CAN signal.
I have tried several options but did not succeed. My panel is called "ObjectsPanel" and the Picture Box control is called "Point1". These are some of the options I have tested:
on start{
setControlProperty("ObjectsPanel","Point1","X","150");
setControlProperty("ObjectsPanel","Point1","X",150);
setControlProperty("ObjectsPanel","Point1","Location","150, 200");
setControlProperty("ObjectsPanel","Point1","Location.X",150);
}