View Single Post
Old 03-05-2004, 06:49 AM   #7 (permalink)
hrdwareguy
"Officer, I was in fear for my life"
 
hrdwareguy's Avatar
 
Location: Oklahoma City
Like Silvy said, you will want a list box and a couple of buttons the conde in the buttons will look something like this:

Code:
    if listbox.item > -1 then
    {
        i=listbox1.itemindex;
        listbox1.insert(i-1,listbox.strings[i];
        listbox1.delete(i);
    }
That would move it up, simular code for moving it down.
__________________
Gun Control is hitting what you aim at

Aim for the TFP, Donate Today
hrdwareguy is offline  
 

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37