home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 November / pcwk_11_98a.iso / Wtestowe / SOFTSRC / vtrial15.exe / DATA.1 / DRAWX.DPR < prev    next >
Text File  |  1997-05-14  |  192b  |  14 lines

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