home *** CD-ROM | disk | FTP | other *** search
/ CD Shareware Magazine 1996 December / CD_shareware_12-96.iso / WIN / Programa / PXREST.ZIP / PXREST.DPR < prev    next >
Encoding:
Text File  |  1996-04-30  |  602 b   |  25 lines

  1. {$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}
  2. {$MINSTACKSIZE $00004000}
  3. {$MAXSTACKSIZE $00100000}
  4. {$IMAGEBASE $00400000}
  5. {$APPTYPE GUI}
  6.  
  7. program PXRest;
  8.  
  9. uses
  10.   Forms,
  11.   main in 'main.pas' {MainForm},
  12.   tblopen in 'tblopen.pas' {TableOpenDlg},
  13.   priv in 'priv.pas' {PrivateDirForm},
  14.   restruct in 'restruct.pas';
  15.  
  16. {$R *.RES}
  17.  
  18. begin
  19.   Application.Initialize;
  20.   Application.CreateForm(TMainForm, MainForm);
  21.   Application.CreateForm(TTableOpenDlg, TableOpenDlg);
  22.   Application.CreateForm(TPrivateDirForm, PrivateDirForm);
  23.   Application.Run;
  24. end.
  25.