home *** CD-ROM | disk | FTP | other *** search
/ PC Plus SuperCD (UK) 2000 March / pcp161b.iso / handson / archive / Issue151 / delphi / SaveForm3 / saveform3.dpr < prev   
Encoding:
Text File  |  1999-01-17  |  194 b   |  13 lines

  1. program saveform3;
  2.  
  3. uses
  4.   Forms,
  5.   movesave in 'movesave.pas' {Form1} ;
  6. {$R *.RES}
  7.  
  8. begin
  9.   Application.Initialize;
  10.   Application.CreateForm(TForm1, Form1);
  11.   Application.Run;
  12. end.
  13.