home *** CD-ROM | disk | FTP | other *** search
- program Sample;
- {------------------------------------------------------------------------------}
- { Sample.dpr: Project file. }
- { }
- { Part of the Delphi 4 Sample application using the Xceed Backup Library }
- { Copyright (C) 1999 - Xceed Software Inc. }
- {------------------------------------------------------------------------------}
-
- uses
- Forms,
- SampleForm in 'SampleForm.pas' {frmSample},
- RollbackForm in 'RollbackForm.pas' {frmRollback};
-
- {$R *.RES}
-
- begin
- Application.Initialize;
- Application.CreateForm(TfrmSample, frmSample);
- Application.CreateForm(TfrmRollback, frmRollback);
- Application.Run;
- end.
-