CustomSlider.lpr 343 B

12345678910111213141516171819202122
  1. program CustomSlider;
  2. {$mode objfpc}{$H+}
  3. uses
  4. {$IFDEF UNIX}
  5. cthreads,
  6. {$ENDIF}
  7. {$IFDEF HASAMIGA}
  8. athreads,
  9. {$ENDIF}
  10. Fresnel, // this includes the Fresnel widgetset
  11. Fresnel.Forms, MainUnit;
  12. {$R *.res}
  13. begin
  14. Application.Initialize;
  15. Application.CreateForm(TFresnelSliderForm, FresnelSliderForm);
  16. Application.Run;
  17. end.