C++Builder Programming Forum
C++Builder  |  Delphi  |  FireMonkey  |  C/C++  |  Free Pascal  |  Firebird
볼랜드포럼 BorlandForum
 경고! 게시물 작성자의 사전 허락없는 메일주소 추출행위 절대 금지
C++빌더 포럼
Q & A
FAQ
팁&트릭
강좌/문서
자료실
컴포넌트/라이브러리
메신저 프로젝트
볼랜드포럼 홈
헤드라인 뉴스
IT 뉴스
공지사항
자유게시판
해피 브레이크
공동 프로젝트
구인/구직
회원 장터
건의사항
운영진 게시판
회원 메뉴
북마크
볼랜드포럼 광고 모집

C++빌더 Q&A
C++Builder Programming Q&A
[58365] 델파이로된 IP변경 함수를 C++빌더로 부탁드립니다
제이언 [bijang66] 2445 읽음    2009-09-03 16:02
제가 델파이를 잘몰라서요.......
IP변경 하는 법을 빌더에서 찾아보았지만 없어서요..
찾다가 델파이는 있더라고요.. 근데....
부탁드립니다...



uses ComObj, ActiveX, UrlMon;   
 
// ======================================================================   
// SetIpConfig()   
// Set IPAddress, Gateway and Subnetmask via WMI   
// Arguments ...   
// AIpAddress - If Null String or 'DHCP' then DHCP is ENABLED   
//              else STATIC IP is set.   
// AGateWay   - [Optional] If Omitted then GATEWAY is left unchanged.   
// SubnetMask - [Optional] If Omited then default = '255.255.255.0'.   
//   
// SetDnsServers()   
// Set  DNS Servers via WMI   
// Arguments ...   
// APrimaryDNS   - If Null String then DNS Server List is CLEARED.   
// AAlternateDNS - [Optional]   
//   
// Return Values ...   
//   0 Successful completion, no reboot required.   
//   1 Successful completion, reboot required.   
//  -1 Unknown OLE Error   
//  64 Method not supported on this platform.   
//  65 Unknown failure.   
//  66 Invalid subnet mask.   
//  67 An error occurred while processing an instance that was returned.   
//  68 Invalid input parameter.   
//  69 More than five gateways specified.   
//  70 Invalid IP address.   
//  71 Invalid gateway IP address.   
//  72 An error occurred while accessing the registry for the info.   
//  73 Invalid domain name.   
//  74 Invalid host name.   
//  75 No primary or secondary WINS server defined.   
//  76 Invalid file.   
//  77 Invalid system path.   
//  78 File copy failed.   
//  79 Invalid security parameter.   
//  80 Unable to configure TCP/IP service.   
//  81 Unable to configure DHCP service.   
//  82 Unable to renew DHCP lease.   
//  83 Unable to release DHCP lease.   
//  84 IP not enabled on adapter.   
//  85 IPX not enabled on adapter.   
//  86 Frame/network number bounds error.   
//  87 Invalid frame type.   
//  88 Invalid network number.   
//  89 Duplicate network number.   
//  90 Parameter out of bounds.   
//  91 Access denied.   
//  92 Out of memory.   
//  93 Already exists.   
//  94 Path, file, or object not found.   
//  95 Unable to notify service.   
//  96 Unable to notify DNS service.   
//  97 Interface not configurable.   
//  98 Not all DHCP leases could be released or renewed.   
//  100 DHCP not enabled on adapter.   
// ======================================================================   
 
 
// ==================================================================   
// IP Address,Gateway and Subnet Mask   
// EnableStatic takes array of string as a parameter   
// for the Addresses. You may wish to rewrite this using   
// array of string as parameter for multiple IP Addresses.   
// I only have use for 1 IP address and Gateway in our application   
// but it's nice to be able to expand it for other users.   
// ==================================================================   
 
function SetIpConfig(const AIpAddress : string;   
                     const AGateWay : string = '';   
                     const ASubnetMask : string = '') : integer;   
var Retvar : integer;   
    oBindObj : IDispatch;   
    oNetAdapters,oNetAdapter,   
    oIpAddress,oGateWay,   
    oWMIService,oSubnetMask : OleVariant;   
    i,iValue : longword;   
    oEnum : IEnumvariant;   
    oCtx : IBindCtx;   
    oMk : IMoniker;   
    sFileObj : widestring;   
begin   
  Retvar := 0;   
  sFileObj := 'winmgmts:\\.\root\cimv2';   
 
  // Create OLE [IN} Parameters   
  oIpAddress := VarArrayCreate([1,1],varOleStr);   
  oIpAddress[1] := AIpAddress;   
  oGateWay := VarArrayCreate([1,1],varOleStr);   
  oGateWay[1] := AGateWay;   
  oSubnetMask := VarArrayCreate([1,1],varOleStr);   
  if ASubnetMask = '' then   
    oSubnetMask[1] := '255.255.255.0'   
  else   
    oSubnetMask[1] := ASubnetMask;   
 
  // Connect to WMI - Emulate API GetObject()   
  OleCheck(CreateBindCtx(0,oCtx));   
  OleCheck(MkParseDisplayNameEx(oCtx,PWideChar(sFileObj),i,oMk));   
  OleCheck(oMk.BindToObject(oCtx,nil,IUnknown,oBindObj));   
  oWMIService := oBindObj;   
 
  oNetAdapters := oWMIService.ExecQuery('Select * from ' +   
                                        'Win32_NetworkAdapterConfiguration ' +   
                                        'where IPEnabled=TRUE');   
  oEnum := IUnknown(oNetAdapters._NewEnum) as IEnumVariant;   
 
  while oEnum.Next(1,oNetAdapter,iValue) = 0 do begin   
    try   
      // Set by DHCP ? (Gateway and Subnet ignored)   
      if (AIpAddress = '') or SameText(AIpAddress,'DHCP') then   
        Retvar := oNetAdapter.EnableDHCP   
      // Set via STATIC ?   
      else begin   
        Retvar := oNetAdapter.EnableStatic(oIpAddress,oSubnetMask);   
        // Change Gateway ?   
        if (Retvar = 0) and (AGateWay <> '') then   
          Retvar := oNetAdapter.SetGateways(oGateway);   
 
        // *** This is where we need some sort of ***   
        // *** Network Mapped Resource Refresh    ***   
      end;   
    except   
      Retvar := -1;   
    end;   
 
    oNetAdapter := Unassigned;   
  end;   
 
  oGateWay := Unassigned;   
  oSubnetMask := Unassigned;   
  oIpAddress := Unassigned;   
  oNetAdapters := Unassigned;   
  oWMIService := Unassigned;   
  Result := Retvar;   
end;

+ -

관련 글 리스트
58365 델파이로된 IP변경 함수를 C++빌더로 부탁드립니다 제이언 2445 2009/09/03
Google
Copyright © 1999-2015, borlandforum.com. All right reserved.