The Easiest Way to Get Local Ip Address (IPv4) in VB.Net
Submitted by janobe on Saturday, March 9, 2019 - 09:27.
In this tutorial, I will teach you how to get the local ip address using visual basic 2015. This method has the ability to get your local ip address with ease. This simple program also illustrates how to retrieve Ipv4 and display it into the listbox.
Step 5
Do the following code for showing the ip address in the list box when the button is clicked.
For any questions about this article. You can contact me @
Email – [email protected]
Mobile No. – 09305235027 – TNT
Or feel free to comment below.
Creating Application
Step 1
Open Microsoft Visual Studio 2015 and create a new windows form application for visual basic.
Step 2
Do the form just like shown below
Step 3
Open the code editor and set theImports System.Net
to access the .net libraries. You can put this above the public class.
Step 4
Create a sub procedure for getting the local ip address.- Private Sub retrieve_ip()
- Dim host_name As String = Dns.GetHostName()
- Dim ip_address As String = Dns.GetHostByName(host_name).AddressList(0).ToString()
- ListBox1.Items.Add("Host: " & host_name & "; IP Address: " & ip_address)
- End Sub
- Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
- retrieve_ip()
- End Sub
Comments
Broken Code.
Are you running that code on an extremely old version of VB.NET?
For me... it always returns the internal IP address of our ASP.NET SERVER (not the user).
I already know the "server's address"... I need the "user's" instead.
Add new comment
- Add new comment
- 7613 views