我是这样写的
procedure setLocalIP(value: string);
var
Reg: TRegistry;
begin
Reg := TRegistry.Create;
Reg.RootKey := HKEY_LOCAL_MACHINE;
if Reg.OpenKey('/System/CurrentControlSet/Services/Class/NetTrans/0000', True) then
Reg.WriteString('IPAddress', value);
Reg.CloseKey;
Reg.Free;
end;
注册表里IPAddress对应的数值是修改了,但是网络属性中的IP变成了空值,使还需要修改别的相关联的地方吗?