View Single Post
  #9  
Old 11-01-2005, 16:42
redbull redbull is offline
Friend
 
Join Date: Mar 2004
Posts: 160
Rept. Given: 17
Rept. Rcvd 5 Times in 4 Posts
Thanks Given: 3
Thanks Rcvd at 6 Times in 6 Posts
redbull Reputation: 5
Hi Guys,

An early Alpha version of my editing / sorting / duplicate searching tool

Code:
        
PS2 := PPEIDSig(PEIDSigs.Items[tmp2]);
 if PS1.Name = PS2.Name then
    if (PS1.Sig = PS2.Sig) and (PS1.isEPTrue = PS2.isEPTrue) then
       lstItems.Checked[tmp2] := true;
Currently I detect duplicates if the Name, Signature and EP_Only fields are
all the same, but obviously this will be configurable. (and the list has to be sorted)

Dupes.txt is a test file with three types of duplicates. I currently only detect it as two duplicates.
Attached Files
File Type: rar PEIDUserDBEdit.rar (200.0 KB, 50 views)
File Type: txt Dupes.txt (1.6 KB, 23 views)
Reply With Quote