Ver Mensaje Individual
  #6 (permalink)  
Antiguo 30/04/2010, 14:08
Eik
 
Fecha de Ingreso: abril-2010
Mensajes: 1
Antigüedad: 14 años, 1 mes
Puntos: 0
Respuesta: Conseguir mi IP VB.NET (Winforms)

TU HAS PUESTO ESTO
Dim ip As System.Net.IPHostEntry
ip = Dns.GetHostEntry("Localhost")
MsgBox(ip.AddressList(0).ToString)

y el servidor localhost es 127.0.0.0


PRUEBA CON ESTO

Dim ip As System.Net.IPHostEntry
ip = Dns.GetHostEntry(My.Computer.Name)
MsgBox(ip.AddressList(0).ToString)

Y IA STA