<form id="hz9zz"></form>
  • <form id="hz9zz"></form>

      <nobr id="hz9zz"></nobr>

      <form id="hz9zz"></form>

    1. 明輝手游網中心:是一個免費提供流行視頻軟件教程、在線學習分享的學習平臺!

      取得本機IP地址的方法2則

      [摘要]方法1:(控件法)新建工程,在工程中加入Winsock控件和一個按鈕控件代碼:Option ExplicitPrivate Sub Command1_Click() MsgBox "當...
      方法1:(控件法)

      新建工程,在工程中加入Winsock控件和一個按鈕控件

      代碼:

      Option Explicit

      Private Sub Command1_Click()
      MsgBox "當前計算機網卡IP:" & Winsock1.LocalIP
      End Sub

      方法2:(API法)

      新建工程,在工程中加入一個按鈕控件

      代碼:

      Option Explicit

      Private Type WSAData
      wVersion As Integer
      wHighVersion As Integer
      szDescription(0 To 256)
      szSystemStatus(0 To 128)
      wMaxSockets As Integer
      dwVendorInfo As Long
      End Type

      Private Declare Function WSAStartup Lib "WSOCK32.DLL" (ByVal wVersionRequired As Long, lpWSAData As WSAData) As Long
      Private Declare Function WSACleanup Lib "WSOCK32.DLL" () As Long
      Private Declare Function gethostname Lib "WSOCK32.DLL" (ByVal szHost As String, ByVal dwHostLen As Long) As Long
      Private Declare Function gethostbyname Lib "WSOCK32.DLL" (ByVal szHost As String) As Long
      Private Declare Sub CopyMemoryIP Lib "kernel32" Alias "RtlMoveMemory" (hpvDest As Any, ByVal hpvSource As Long, ByVal cbCopy As Long)

      Private Function GetIPAddress() As String
      On Error GoTo Z
      Dim wsa As WSAData
      Dim rVal As Long
      Dim sHost As String * 256
      Dim lp As Long
      Dim lpa As Long
      Dim IpAdr(0 To 3) As Byte
      rVal = WSAStartup((2 + &H100), wsa)
      If rVal = 0 Then
      gethostname sHost, 256
      lp = gethostbyname(sHost)
      If lp Then
      CopyMemoryIP lpa, lp + 16, 4
      CopyMemoryIP IpAdr(0), lpa, 4
      GetIPAddress = CStr(IpAdr(0)) & "." & CStr(IpAdr(1)) & "." & CStr(IpAdr(2)) & "." & CStr(IpAdr(3))
      End If
      WSACleanup
      End If
      Exit Function
      Z:
      GetIPAddress = ""
      End Function

      Private Sub Command1_Click()
      Dim ret As String
      ret = GetIPAddress
      If ret <> "" Then
      MsgBox "當前計算機網卡IP:" & ret
      End If
      End Sub



      日韩精品一区二区三区高清