如何用Delphi实现局域网内消息传递
2008-02-23 07:14:32来源:互联网 阅读 ()
向窗体上添加两个TLabel组件、两个TEdit组件和一个TButton组件
首先声明NetMessageBufferSend函数,该函数在netapi32.dll库中:
type NET_API_STATUS = LongInt; function NetMessageBufferSend(servername: LPCWSTR; msgname: LPCWSTR; fromname: LPCWSTR; buf: Pointer; buflen: DWORD): NET_API_STATUS; stdcall;external ’netapi32.dll’;
在程序运行过程中,单击Send按钮,就会向Computer文本框指定的计算机发送Content文本框中输入的消息,响应代码如下:
procedure TForm1.Button1Click(Sender: TObject); var WideMsg:PWideChar; DestName:PWideChar; begin DestName:=PWideChar(WideString(Edit1.Text)); WideMsg:=PWideChar(WideString(Edit2.Text)); NetMessageBufferSend(nil,DestName,nil,WideMsg,Length(Edit2.Text)*2); end;
程序代码如下:
unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls; type NET_API_STATUS = LongInt; function NetMessageBufferSend(servername: LPCWSTR; msgname: LPCWSTR; fromname: LPCWSTR; buf: Pointer; buflen: DWORD): NET_API_STATUS; stdcall;external ’netapi32.dll’; type TForm1 = class(TForm) Edit1: TEdit; Label1: TLabel; Label2: TLabel; Edit2: TEdit; Button1: TButton; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } end; var Form1: TForm1; implementation {$R *.dfm} procedure TForm1.Button1Click(Sender: TObject); var WideMsg:PWideChar; DestName:PWideChar; begin DestName:=PWideChar(WideString(Edit1.Text)); WideMsg:=PWideChar(WideString(Edit2.Text)); NetMessageBufferSend(nil,DestName,nil,WideMsg,Length(Edit2.Text)*2); end; end.
保存文件,然后按F9键运行程序,在Computer对应的文本框中输入目的计算机名,在Content对应的文本框中输入消息内容。
单击Send按钮,就会向指定的计算机发送消息,在接收消息的计算机上就会显示一个对话框。
(T127)
上一篇: 提供一个基于C 的加密/解密算法
下一篇: 用Delphi编程实现清空回收站功能
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash