
30/04/2010, 14:08
|
| | Fecha de Ingreso: abril-2010
Mensajes: 1
Antigüedad: 15 años 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 |