home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / delphi1 / lmdtoolb.exe / demos / fileman / listdlg.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-09-06  |  442 b   |  29 lines

  1. unit Listdlg;
  2.  
  3. interface
  4.  
  5. uses WinTypes, WinProcs, Classes, Graphics, Forms, Controls, Buttons,
  6.   StdCtrls, ExtCtrls;
  7.  
  8. type
  9.   TListdlgform = class(TForm)
  10.     Bevel1: TBevel;
  11.     Button2: TButton;
  12.     Button1: TButton;
  13.     List: TListBox;
  14.     ListCaption: TLabel;
  15.   private
  16.     { Private declarations }
  17.   public
  18.     { Public declarations }
  19.   end;
  20.  
  21. var
  22.   Listdlgform: TListdlgform;
  23.  
  24. implementation
  25.  
  26. {$R *.DFM}
  27.  
  28. end.
  29.