请问如何在delphi中动态更改Ip地址 ( 积分: 100 )

  • 主题发起人 主题发起人 8713007
  • 开始时间 开始时间
8

8713007

Unregistered / Unconfirmed
GUEST, unregistred user!
请问如何在delphi中动态更改Ip地址
请问如何在delphi中动态更改Ip地址
 
请问如何在delphi中动态更改Ip地址
请问如何在delphi中动态更改Ip地址
 
http://www.lkinfo.net/chgnetwork.rar
 
netsh:
netsh interface ip set address 本地连接 static 192.168.0.1 255.255.255.0 192.168.0.10 1
[ 新 ip ] [ 掩码 ] [ 网关 ] V

在delphi中,执行下列语句即可:
shellexecute(handle,'','netsh interface ip set address 本地连接 static 192.168.0.1 255.255.255.0 192.168.0.10 1',nil,nil,sw_hide)
 
有专门的API函数。
 
后退
顶部