delphi三十六之网络篇

2008-04-09 04:18:19来源:互联网 阅读 ()

新老客户大回馈,云服务器低至5折

  1.在程序中实现用默认的Web浏览器打开URL以及发送电子邮件

uses

shellapi;

….

Procedure TForm1.Label1Click(Sender:Tobject);

begin

 shellexecute(handle,"open","http://www.swissdelphicenter.ch", nil,nil,sw_show);

end;

procedure

 TForm1.Button1Click(Sender: Tobject);

begin

 shellexecute(handle,"open", "mailto:user@host.com", nil, nil,sw_shownormal);

end;

  2.得到网络适配器的MAC地址

//uses Windows, SysUtils, NB30, 以下为类型定义及函数代码

const sNetBiosError = "NetBIOS错误%d";

type TMACAddress = packed array[0..5] of Byte;

ENetBiosError = class( Exception );

TAStat = record Adapt : TAdapterStatus;

NameBuff : array[0..30] of TNameBuffer;

end;

function GetMacAddress( AdapterNum : Integer ) : TMACAddress;

var

 Ncb : TNCB; uRetCode : Char;

 J : Integer; Adapter : TAStat;

begin

 FillChar( NCB, SizeOf(NCB), 0 );

 with NCB do begin

 ncb_command := Char(NCBRESET);

 ncb_lana_num := Char( AdapterNum );

end;

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:Delphi之三十六计之系统篇

下一篇:Delphi中MsComm控件的安装使用

热门词条
热门标签