Computer NetworksNETWORKS

Visual Basic 10 IP Address Finder Tutorial

WARNING
=========
THIS IS FOR EDUCATIONAL PURPOSES ONLY. I WILL NOT BE RESPONSIBLE FOR WHATEVER TROUBLE YOU MAY GET INTO.

Visual Basic 10 tutorial, how to make an IP Address Finder using just simple coding. Please thumbs up this video if it help you, leave a comment if you guys have any question and subscribe to my channel for more videos.

The Code
========
Dim Hostname As IPHostEntry = Dns.GetHostByName(Textbox1.Text)
Dim ip As IPAddress() = Hostname.AddressList
TextBox2.Text = ip(0).ToString

source

ip address

Alice AUSTIN

Alice AUSTIN is studying Cisco Systems Engineering. He has passion with both hardware and software and writes articles and reviews for many IT websites.

16 thoughts on “Visual Basic 10 IP Address Finder Tutorial

Comments are closed.