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 >
Wrap
Text File
|
1997-05-04
|
878b
|
36 lines
{$IfDef Win32}
{$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}
{$MINSTACKSIZE $00004000}
{$MAXSTACKSIZE $00100000}
{$IMAGEBASE $00400000}
{$APPTYPE GUI}
{$Else}
{$A+,B-,D+,F-,G+,I+,K+,L+,N+,P+,Q-,R-,S+,T-,V+,W-,X+,Y+}
{$M 16384,8192}
{$Endif}
{
DragDrop.DPR, a testprogram for:
TzDivider
TzColorBtn
TzShapeBtn
The ZieglerCollection one (TM)
Version 1,01
(C) Copyright 1995,96,97 By ZieglerSoft, all rights reserved
}
program Dragdrop;
uses
Forms,
Dragdrp1 in 'DRAGDRP1.PAS' {Form1};
{$R *.RES}
begin
Application.CreateForm(TForm1, Form1);
Application.Run;
end.