home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / ruzne / zcd30120.exe / Demo / V110_2.dpr < prev    next >
Text File  |  1997-06-20  |  709b  |  32 lines

  1. program V110_2;
  2.  
  3. {
  4.                       V110_2.DPR, a testprogram for:
  5.                                                          TzTrayIcon
  6.                                                          TzShowApp
  7.                                                          TzTitleBar
  8.                       The ZieglerCollection one (TM)
  9.                                 Version 1,10
  10.  
  11.         (C) Copyright 1997 By ZieglerSoft, all rights reserved
  12. }
  13.  
  14. {$IfnDef Win32}
  15.  
  16.    Can only be compiled in 32-bit versions of Delphi
  17.  
  18. {$Endif}
  19.  
  20.  
  21. uses
  22.   Forms,
  23.   V11_2 in 'V11_2.pas' {Form1};
  24.  
  25. {$R *.RES}
  26.  
  27. begin
  28.   Application.Initialize;
  29.   Application.CreateForm(TForm1, Form1);
  30.   Application.Run;
  31. end.
  32.