PathControl.dpr 429 B

123456789101112131415161718
  1. {: This Form demonstrates basic "Pathcontrol" movements.
  2. You can modified the Looped property of the path to enable the path-looping.
  3. Set ShowPath property to turn on or turn off the path-displaying
  4. }
  5. program PathControl;
  6. uses
  7. Forms,
  8. fPathControl in 'fPathControl.pas' {FormPathControl};
  9. {$R *.RES}
  10. begin
  11. Application.Initialize;
  12. Application.CreateForm(TFormPathControl, FormPathControl);
  13. Application.Run;
  14. end.