I have a complexe datatype in RAPID(V5.13.01), it is a field of RECORDS like this:
RECORD typePlace
num Base_L;
num Base_B;
num Base_H;
num H_akt;
num L_Anz;
num LTyp_Akt;
bool M_Init;
bool M_Known;
ENDRECORD
TASK PERS typePlace Place{7}:=[
[0,0,0,1800,0,0,FALSE,FALSE],
[0,0,0,1800,0,0,FALSE,FALSE],
[0,0,0,1800,0,0,FALSE,FALSE],
[0,0,0,1800,0,0,FALSE,FALSE],
[0,0,0,1800,0,0,FALSE,FALSE],
[0,0,0,1800,0,0,FALSE,FALSE],
[0,0,0,1800,0,0,FALSE,FALSE]
];
Now i want to watch some of the components in an diagnostic-screen build with screenmaker.
I am able to bind an numEditor.value to an single PERS num-Variable and also to bind to a complete field-element with the index as reference, but how can i connect just to an single record.component like this:
numEditor1.value= place{1}.H_akt
numEditor2.value= place{2}.H_akt
In binding-screen the component-window at the right site down is allways inactive!?
Thanks dust2