CylinderExt.dpr 250 B

1234567891011121314
  1. program CylinderExt;
  2. uses
  3. System.StartUpCopy,
  4. FMX.Forms,
  5. fdCylinderExt in 'fdCylinderExt.pas' {FormCylinderExt};
  6. {$R *.res}
  7. begin
  8. Application.Initialize;
  9. Application.CreateForm(TFormCylinderExt, FormCylinderExt);
  10. Application.Run;
  11. end.