Delete all locations

  • Hello :grinning_face_with_smiling_eyes:

    I downloaded the test program to the robot. Then I wanted to go back to the old program, but the locations from the test program remained. This is problematic. How can I delete all data in one go? I only look at the DELETE / L command but it only removes a single location and there are a lot of them

  • DELETE program_name

    Will delete ALL data (locations, reals, strings etc) associated with that program.

    It will not delete data that is also being used by another program, this data is protected because it is used by another program.


    But be careful with CALL subroutines, this will also delete all CALL subroutines in that program too if they are not also called from other programs.

  • You can only delete individual locations one at a time or as how many as you can fit on command step as below.

    DELETE/L p1,p2,p3,p4,p5,p6,p7


    You can use wildcard (But be careful)….all locations that start with 'p'

    DELETE/L p*


    If you made array then:

    DELETE/L pts[]

Advertising from our partners