Dear all,
I need to create an array of robtarget (i would like to generate it)
MODULE Module1
!***********************************************************
PERS robtarget myRobtarget:=[[100,200,300],[1,0,0,0],[0,0,0,0],[9E9,9E9,9E9,9E9,9E9,9E9]];
PERS robtarget myRobtarget2{100};
!***********************************************************
!
! Procédure principale
!
! Ceci est le point d'entrée de votre programme
!
!***********************************************************
PROC main()
FOR i FROM 1 TO 100 DO
myRobtarget2{i}:=myRobtarget;
ENDFOR
ENDPROC
ENDMODULE
I just load it in an empty station, apply the code and then when i go to the flexpendant i could see in data => robtarget => my array of 100 values.
The problem is
WHEN I DO the backup, i cannot found the declaration of the array with all values
WHY ?
Thanks for answer