home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / ruzne / zcd30120.exe / Demo / spottest.dpr < prev    next >
Text File  |  1997-05-04  |  996b  |  38 lines

  1. {$IfDef Win32}
  2. {$A+,B-,C-,D+,E-,F-,G+,H+,I+,J+,K-,L+,M-,N+,O+,P+,Q-,R-,S-,T-,U-,V+,W-,X+,Y-,Z1}
  3. {$MINSTACKSIZE $00004000}
  4. {$MAXSTACKSIZE $00100000}
  5. {$IMAGEBASE $00400000}
  6. {$APPTYPE GUI}
  7. {$Else}
  8. {$A+,B-,D+,F-,G+,I+,K+,L+,N+,P+,Q-,R-,S+,T-,V+,W-,X+,Y+}
  9. {$M 16384,8192}
  10. {$Endif}
  11.  
  12. Program Spottest;
  13.  
  14. {
  15.                 SpotTest.DPR, a testprogram for:
  16.                                                    Tz3DLabel
  17.                                                    TzColorBtn
  18.                                                    TzMouseSpot
  19.                                                    TzHint
  20.                                                    TzShowApp
  21.  
  22.                       The ZieglerCollection one (TM)
  23.                                 Version 1,01
  24.  
  25.            (C) Copyright 1995,96,97 By ZieglerSoft, all rights reserved
  26. }
  27.  
  28. Uses
  29.   Forms,
  30.   Spot_1 in 'SPOT_1.PAS' {Form1};
  31.  
  32. {$R *.RES}
  33.  
  34. Begin
  35.   Application.CreateForm(TForm1, Form1);
  36.   Application.Run;
  37. End.
  38.