home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 53 / IOPROG_53.ISO / soft / c++ / xceedftp.exe / Samples / Delphi / MethodDemo / MethodDemo.dpr < prev    next >
Encoding:
Text File  |  2000-10-05  |  756 b   |  25 lines

  1. program MethodDemo;
  2. {==================================================================}
  3. { Description: Getting Started Sample Application                  }
  4. { Languages:   For Delphi 3, 4 and 5                               }
  5. { Copyright:   Copyright ⌐ 1995-1999 Xceed Software Inc.           }
  6. {              All Rights Reserved.                                }
  7. {==================================================================}
  8.  
  9. uses
  10.   Forms,
  11.   Main in 'Main.pas' {frmMain};
  12.  
  13. {$R *.RES}
  14.  
  15. begin
  16.   Application.Initialize;
  17.   Application.Title := 'Method Demonstrator sample application';
  18.   Application.CreateForm(TfrmMain, frmMain);
  19.  
  20.   Application.HintPause := 250;
  21.   Application.HintHidePause := 10000;
  22.  
  23.   Application.Run;
  24. end.
  25.