home *** CD-ROM | disk | FTP | other *** search
- unit Main;
-
- interface
-
- uses
- SysUtils, WinTypes, WinProcs, Messages, Classes, Graphics, Controls,
- Forms, Dialogs, StdCtrls, IconCtls;
-
- type
- TForm1 = class(TForm)
- IconComboBox: TIconComboBox;
- IconListBox: TIconListBox;
- Label1: TLabel;
- Edit1: TEdit;
- procedure Edit1Change(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- Form1: TForm1;
-
- implementation
-
- {$R *.DFM}
-
- procedure TForm1.Edit1Change(Sender: TObject);
- begin
- if FileExists(Edit1.Text) then begin
- IconComboBox.FileName := Edit1.Text;
- IconListBox.FileName := Edit1.Text;
- end;
- end;
-
- end.
-
-