home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 26 / CD_ASCQ_26_1295.iso / vrac / ysfl12.zip / FILES1.ZIP / uninst.dpr < prev    next >
Text File  |  1995-08-01  |  165b  |  13 lines

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