home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 53 / IOPROG_53.ISO / soft / c++ / xceedbkp.exe / Samples / Delphi4 / Sample.dpr < prev    next >
Encoding:
Text File  |  1999-09-02  |  807 b   |  22 lines

  1. program Sample;
  2. {------------------------------------------------------------------------------}
  3. { Sample.dpr: Project file.                                                    }
  4. {                                                                              }
  5. { Part of the Delphi 4 Sample application using the Xceed Backup Library       }
  6. { Copyright (C) 1999 - Xceed Software Inc.                                     }
  7. {------------------------------------------------------------------------------}
  8.  
  9. uses
  10.   Forms,
  11.   SampleForm in 'SampleForm.pas' {frmSample},
  12.   RollbackForm in 'RollbackForm.pas' {frmRollback};
  13.  
  14. {$R *.RES}
  15.  
  16. begin
  17.   Application.Initialize;
  18.   Application.CreateForm(TfrmSample, frmSample);
  19.   Application.CreateForm(TfrmRollback, frmRollback);
  20.   Application.Run;
  21. end.
  22.