On Oct 6, 2011, at 5:50 PM, Matthias Rebbe wrote:

put the dgtext of grp "Festplatte 1" into tHDD1
put the dgtext of grp "Festplatte 2" into tHDD2

REPEAT FOR each line i in tHDD1
    put true into myArray[i]["A"]
END REPEAT

REPEAT FOR each line i in tHDD2
     put true into myArray[i]["B"]
END REPEAT

Major Caution:

This technique only works robustly if every line in tHDD1 is unique
and if every line in tHDD2 is unique
since using myArray [i] ["A"] would make duplicates within each list disappear. If your desired result is not affected by this, then the result will be correct.

Path name comparisons are unique by their nature, but not all data sets are.


Jim Ault
_______________________________________________
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Reply via email to