Hello,
I have two list boxes (TListBox). Both containing user-specific directory locations.
My program reads in the directory location(s) of one of the list boxes and displays the files onto a list view (TListView). This works great.
The problem i have is merging the second list box in with the first list box so the results have items from both list boxes.
The results are going into a single string variable. Somehow, I should be able to put both list boxes into that one variable just like how it works right now, with just the one list box.
------------------------------------------
------------------------------------------
Any ideas?
Thanks
I have two list boxes (TListBox). Both containing user-specific directory locations.
My program reads in the directory location(s) of one of the list boxes and displays the files onto a list view (TListView). This works great.
The problem i have is merging the second list box in with the first list box so the results have items from both list boxes.
The results are going into a single string variable. Somehow, I should be able to put both list boxes into that one variable just like how it works right now, with just the one list box.
------------------------------------------
Code:
var results : string;
RN : integer;
// ROOTS is a TStringList
RN := 0;
results := ROOTS[RN - 1];
Any ideas?
Thanks