MsgView.pas
上传用户:hbtcygglw
上传日期:2007-01-07
资源大小:281k
文件大小:1k
源码类别:

其他

开发平台:

Delphi

  1. unit MsgView;
  2. interface
  3. uses
  4.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  5.   StdCtrls, Buttons;
  6. type
  7.   TMsgViewDlg = class(TForm)
  8.     ViewMemo: TMemo;
  9.     BitBtn1: TBitBtn;
  10.   private
  11.     { Private declarations }
  12.   public
  13.     { Public declarations }
  14.     class procedure Execute(msg:String);
  15.   end;
  16. implementation
  17. {$R *.DFM}
  18. { TMsgViewDlg }
  19. class procedure TMsgViewDlg.Execute(msg: String);
  20. begin
  21. with (TMsgViewDlg.Create(Application))do
  22.     begin
  23.     ViewMemo.Lines.Add(msg);    
  24.     ShowModal;
  25.     Free;
  26.     end;
  27. end;
  28. end.