ScrollBoxLCLDemo1.lpr 374 B

1234567891011121314151617181920
  1. program ScrollBoxLCLDemo1;
  2. uses
  3. {$IFDEF Unix}
  4. cthreads,
  5. {$ENDIF}
  6. Interfaces, // this includes the LCL widgetset
  7. Fresnel, // this includes the Fresnel-LCL widgetset
  8. Forms, MainUnit;
  9. {$R *.res}
  10. begin
  11. RequireDerivedFormResource:=True;
  12. Application.Scaled:=True;
  13. Application.Initialize;
  14. Application.CreateForm(TMainForm,MainForm);
  15. Application.Run;
  16. end.