CustomCheckBox.lpr 384 B

1234567891011121314151617181920212223
  1. program CustomCheckBox;
  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. { you can add units after this };
  13. {$R *.res}
  14. begin
  15. Application.Initialize;
  16. Application.CreateForm(TFresnelCheckBoxForm, FresnelCheckBoxForm);
  17. Application.Run;
  18. end.