VB Project Source Code

System IP address tutorial vb.net




Free download this tutorial link below


Imports System.Net
Public Class Form1




    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim hostname As IPHostEntry = Dns.GetHostByName(TextBox1.Text)
        Dim ip As IPAddress() = hostname.AddressList
        TextBox1.Text = ip(0).ToString()
    End Sub
End Class