|
|
|
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, | |
Dialogs, ExtCtrls, StdCtrls, FileCtrl, Jpeg; | |
TForm1 = class(TForm) | |
Panel: TPanel; | |
ImageOut: TImage; | |
FileListBox: TFileListBox; | |
DirectoryListBox: TDirectoryListBox; | |
DriveComboBox: TDriveComboBox; | |
procedure FileListBoxChange(Sender: TObject); | |
{ Private declarations } | |
{ Public declarations } | |
Form1: TForm1; | |
procedure TForm1.FileListBoxChange(Sender: TObject); | |
if filelistbox.FileName<>'' then imageout.Picture.LoadFromFile( Filelistbox.FileName); | |