Public Function GetComputerName() As String
Dim ComputerName As String
ComputerName = System.Net.Dns.GetHostName
Return ComputerName
End Function
-
We need more than just code - we need to see an MCVE, a detailed description of your goal, and the exact error or problematic output you're getting. See How to Ask.CodeMouse92– CodeMouse922016-04-19 18:55:08 +00:00Commented Apr 19, 2016 at 18:55
Add a comment
|
1 Answer
For PC name use:
My.Computer.Name
For IP use:
Private Sub 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 & "; IP Address: " & strIPAddress)
End Sub