SelectURL.pas 385 B

12345678910111213141516171819202122232425262728
  1. unit SelectURL;
  2. interface
  3. uses
  4. Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5. Dialogs, StdCtrls;
  6. type
  7. TFormSelectURL = class(TForm)
  8. btOK: TButton;
  9. btCancel: TButton;
  10. URL: TEdit;
  11. private
  12. { Déclarations privées }
  13. public
  14. { Déclarations publiques }
  15. end;
  16. var
  17. FormSelectURL: TFormSelectURL;
  18. implementation
  19. {$R *.dfm}
  20. end.