home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / WIN / Programa / ICONCTLS.ZIP / DEMO.ZIP / MAIN.PAS < prev   
Encoding:
Pascal/Delphi Source File  |  1996-07-25  |  677 b   |  39 lines

  1. unit Main;
  2.  
  3. interface
  4.  
  5. uses
  6.   SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
  7.   Forms, Dialogs, StdCtrls, IconCtls;
  8.  
  9. type
  10.   TForm1 = class(TForm)
  11.     IconComboBox: TIconComboBox;
  12.     IconListBox: TIconListBox;
  13.     Label1: TLabel;
  14.     Edit1: TEdit;
  15.     procedure Edit1Change(Sender: TObject);
  16.   private
  17.     { Private declarations }
  18.   public
  19.     { Public declarations }
  20.   end;
  21.  
  22. var
  23.   Form1: TForm1;
  24.  
  25. implementation
  26.  
  27. {$R *.DFM}
  28.  
  29. procedure TForm1.Edit1Change(Sender: TObject);
  30. begin
  31.   if FileExists(Edit1.Text) then begin
  32.     IconComboBox.FileName := Edit1.Text;
  33.     IconListBox.FileName := Edit1.Text;
  34.   end;
  35. end;
  36.  
  37. end.
  38.  
  39.