Mirror

How to load data from a table into a TListBox (Views: 712)


Problem/Question/Abstract:

How can I create a generic procedure that will load data from a table into a TListBox?

Answer:

Actually, this tip pertains to any control that has a property such as an Items property of type TStrings or is a descendant of TStrings. For example, the following controls have properties of type TStrings: TComboBox, TMemo, TQuery (SQL Property), TDBRadioGroup, TDirectoryListBox, TDriveComboBox, TFileListBox, TFilterComboBox, TListBox, TRadioGroup.

I should say that TStrings is actually an abstract class, and though you will see the help file list properties such as Items as TStrings, they're actually descendants of TStrings. More commonly, you will see something like the TStringList being used almost interchangeably (at least in concept) with TStrings. Essentially, a TStrings object is a list of strings, with array-like properties. The advantage of a TStrings object over an array is that you don't have to worry about allocating and deallocating memory to add and subtract items (which is why they're ideal when working with a loose collection of strings).

To load data from a column in a table into something like a TListBox is easy. All it takes is stepping through the table, picking out the values you want and adding them to the TStrings object - all in one line of code.

{Loads a list using values from a specific field from an open table}

procedure DBLoadList(srcTbl: TTable; srcFld: string; const lst: TStrings);
{srcTbl: Source Table, srcFld: Source Field, lst: Target List}
begin
  with srcTbl do
    if (RecordCount > 0) then
    begin
      {Don't bother if there are no records}
      lst.Clear;
      while not EOF do
      begin
        lst.Add(FieldByName(srcFld).AsString);
        next;
      end;
    end;
end;

The code above assumes you have an open TTable whose values you can access. The real workhorse of the procedure is the while loop which steps through the table and grabs the value from the specified field and assigns it to a new entry into the TStrings object.

Operations such as the one above can be done any of those objects because the properties descend from a common ancestor.

<< Back to main page