{----------------------------------------------------------------------------- Unit Name: vlthumbs.dpr Author: vesal Purpose: View pictures and make HTML-files History: Compiling: to compile from command line (all following to one line) dcc32 -U\Mytemp\comps; -U\C:\Devel\Delphi6\Lib vlthumbs.dpr To use from IDE, install first package KaveOptVCL.dpk To install the package just open the file and then press Compile button and then Install button form the form. Then change in Delphi Project/Options/Searh Path: \Mytemp\comps; If needed replace \Mytemp\comps by the place where Kave-components are installed. For used files and the explanation read files.html. -----------------------------------------------------------------------------} program vlthumbs; uses Forms, vlthumbsForm in 'vlthumbsForm.pas' {FormVlThumbs}, VlThumbsOptionsForm in 'VlThumbsOptionsForm.pas' {FormOptions}, ZoomPicture in 'ZoomPicture.pas', AboutVlThumbsForm in 'AboutVlThumbsForm.pas' {FormAboutVlThumbs}, Parameters in 'Parameters.pas', Folder in 'Folder.pas', ThumbsPanel in 'ThumbsPanel.pas'; {$R *.res} begin Application.Initialize; Application.CreateForm(TFormVlThumbs, FormVlThumbs); Application.CreateForm(TFormAboutVlThumbs, FormAboutVlThumbs); Application.Run; end.