home *** CD-ROM | disk | FTP | other *** search
/ Chip: Shareware for Win 95 / Chip-Shareware-Win95.bin / ostatni / delphi / ruzne / zcd30120.exe / Demo / DragDrop.dpr < prev    next >
Text File  |  1997-05-04  |  878b  |  36 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. {
  13.                 DragDrop.DPR, a testprogram for:
  14.                                                    TzDivider
  15.                                                    TzColorBtn
  16.                                                    TzShapeBtn
  17.  
  18.                       The ZieglerCollection one (TM)
  19.                                 Version 1,01
  20.  
  21.            (C) Copyright 1995,96,97 By ZieglerSoft, all rights reserved
  22. }
  23.  
  24. program Dragdrop;
  25.  
  26. uses
  27.   Forms,
  28.   Dragdrp1 in 'DRAGDRP1.PAS' {Form1};
  29.  
  30. {$R *.RES}
  31.  
  32. begin
  33.   Application.CreateForm(TForm1, Form1);
  34.   Application.Run;
  35. end.
  36.