home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Install / DATA.Z / VARTOINT.DPR < prev    next >
Encoding:
Text File  |  1996-06-11  |  177 b   |  13 lines

  1. program VarToInt;
  2.  
  3. uses
  4.   Forms,
  5.   Main in 'Main.pas' {OleWordForm};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.CreateForm(TOleWordForm, OleWordForm);
  11.   Application.Run;
  12. end.
  13.