ThickLinesTest.dpr 314 B

123456789101112131415
  1. program ThickLinesTest;
  2. uses
  3. Vcl.Forms,
  4. UnitMain in 'UnitMain.pas' {FormThickLineTest},
  5. GR32.Lines.Thick in 'GR32.Lines.Thick.pas';
  6. {$R *.res}
  7. begin
  8. Application.Initialize;
  9. Application.MainFormOnTaskbar := True;
  10. Application.CreateForm(TFormThickLineTest, FormThickLineTest);
  11. Application.Run;
  12. end.