/components/chmhelp/democontrol/project1.lpr

http://github.com/graemeg/lazarus · Unknown · 15 lines · 11 code · 4 blank · 0 comment · 0 complexity · c2dcd86d70c50d49ebef401d60d43ef4 MD5 · raw file

  1. program project1;
  2. {$mode objfpc}{$H+}
  3. uses
  4. Interfaces, // this includes the LCL widgetset
  5. Forms
  6. { add your units here }, Unit1, lhelpcontrolpkg;
  7. begin
  8. Application.Initialize;
  9. Application.CreateForm(TForm1, Form1);
  10. Application.Run;
  11. end.