Hi Manfred,
thank you for your quick reply, but maybe i didn't explain my problem well.
Here is my setup
1. Unit Application
Classes within
a. Class Application (object Panel,Device variable)
b. Class Panel (Graph, CoordList)
c. DeviceClass ( updateCoords method, Amplitude property)
I need 960 samples to fill the hall display by itterating a loop or decrement an index for ex. in updateCoords method in simple form
var float x = 48.0;
pure Amplitude = aNewValue;
CoordList.AddCoord( x, (float)Amplitude );// second argument just for indication
x= x-0.05;
if(x==0.0)
{
Panel.Coordinates = CoordList;// update Graph here
x = 48.0;
}
The problem as you can see and is not obvious to me as a newcomer to oop is how i can access the cord list that exist in a foreign Class (Panel)
from the Device class. As i can understand in runtime creation of an autoobject is just an instance of the base object so you can interact in reality
with the base object.
BR
Paul.