home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 December / Chip_2001-12_cd1.bin / zkuste / delphi / kompon / d3456 / LSPICEDT.ZIP / LsPictureExplorer / LsPictureExplorer.dpr < prev    next >
Encoding:
Text File  |  2001-04-08  |  342 b   |  16 lines

  1. program LsPictureExplorer;
  2.  
  3. uses
  4.   Forms,
  5.   LsPicEditorMain in 'LsPicEditorMain.pas' {PEMainForm},
  6.   LsPicEditorView in 'LsPicEditorView.pas' {PEViewForm};
  7.  
  8. {$R *.RES}
  9.  
  10. begin
  11.   Application.Initialize;
  12.   Application.CreateForm(TPEMainForm, PEMainForm);
  13.   Application.CreateForm(TPEViewForm, PEViewForm);
  14.   Application.Run;
  15. end.
  16.