PublisherForm.pas
上传用户:fh681027
上传日期:2022-07-23
资源大小:1959k
文件大小:1k
源码类别:

Delphi控件源码

开发平台:

Delphi

  1. unit PublisherForm;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  5.   Dialogs, StdCtrls, MdComEvents_TLB;
  6. type
  7.   TForm1 = class(TForm)
  8.     Button1: TButton;
  9.     Edit1: TEdit;
  10.     procedure Button1Click(Sender: TObject);
  11.     procedure FormCreate(Sender: TObject);
  12.   private
  13.     Inform: IMdInform;
  14.   public
  15.     { Public declarations }
  16.   end;
  17. var
  18.   Form1: TForm1;
  19. implementation
  20.   {$R *.dfm}
  21. procedure TForm1.Button1Click(Sender: TObject);
  22. begin
  23.   Inform.Informs (20, Edit1.Text);
  24. end;
  25. procedure TForm1.FormCreate(Sender: TObject);
  26. begin
  27.   Inform := CoMdInform.Create;
  28. end;
  29. end.