How do I get a computer's name and IP address using VB.NET?

后端 未结 10 1042
春和景丽
春和景丽 2020-12-09 11:32

How can i get ip address of system by sending mac ip address as input using vb.net coding?

10条回答
  •  温柔的废话
    2020-12-09 12:36

    Thanks Shuwaiee

    I made a slight change though as using it in a Private Sub already.

    Dim GetIPAddress()
    
    Dim strHostName As String
    
    Dim strIPAddress As String
    
    strHostName = System.Net.Dns.GetHostName()
    
    strIPAddress = System.Net.Dns.GetHostByName(strHostName).AddressList(0).ToString()
    
    MessageBox.Show("Host Name: " & strHostName & vbCrLf & "IP Address: " & strIPAddress)
    

    But also made a change to the way the details are displayed so that they can show on seperate lines using & vbCrLf &

    MessageBox.Show("Host Name: " & strHostName & vbCrLf & "IP Address: " & strIPAddress)
    

    Hope this helps someone.

提交回复
热议问题