Windows with Delphi Windows API (94) Windows Filesystem (41) Windows Forms (69) Windows Graphics (38)
Exchange Links About this site Links to us 
|
List filenames in a listbox
This article has not been rated yet. After reading, feel free to leave comments and rate it.
You do not need a TFileListBox; any listbox can receive a list of filenames using the LB_DIR message:
 | |  | | StrCopy(fName, 'c:\*.txt');
SendMessage(ListBox1.Handle, lb_Dir, 18, LongInt(@fName)); | |  | |  | You don't like the formatting? Check out SourceCoder then!
Comments:
|