Reputation: 1
We got this program for migration purposes. Still first we have to get it running / build a version using the old environment to check if this works.
How can we get this component? Which library is it in? Google does not have any helping information.
I tried to build the application and expected it to work properly.
Upvotes: -4
Views: 102
Reputation: 597941
The TFileListBox
component is declared in the FileCtrl
unit (aka Vcl.FileCtrl
since Delphi XE2 - but Unit Scope Names didn't exist yet in Delphi 6).
On the Component Palette, it is located under the "Win 3.1"
tab (along with the TDirectoryListBox
, TDriveComboBox
, and TFilterComboBox
components).
Upvotes: 2