SelectURL.pas
上传用户:hylc_2004
上传日期:2014-01-23
资源大小:46800k
文件大小:0k
源码类别:

Delphi控件源码

开发平台:

Delphi

  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閏larations priv閑s }
  13.   public
  14.     { D閏larations publiques }
  15.   end;
  16. var
  17.   FormSelectURL: TFormSelectURL;
  18. implementation
  19. {$R *.dfm}
  20. end.