CitarEmpecé tomando antibióticos por 4 días, mejoró un poco, dejé de tomar, [...]
ahora lo que va pasar que esa medicina ya no te va servirm, te tendran que dar una mas fuerte y muy probablemente inyecciones (por cierto duelen mucho )...
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarEmpecé tomando antibióticos por 4 días, mejoró un poco, dejé de tomar, [...]
CitarInternal Server Error
The server an or misconfiguration and was unable to complete your request.
Please contact the server , warzone@elhacker.net and inform them of the time the , and anything you might have done that may have caused the error.
More information about this error may be available in the log.
Imports System.Net
Public Class Form1
Dim a As Integer
Dim b As Integer
Dim i As Integer
Dim t As Integer
Dim eco As New System.Net.NetworkInformation.Ping
Dim respuesta As System.Net.NetworkInformation.PingReply
Dim algo As System.Net.NetworkInformation.IPInterfaceProperties
Dim ip As IPAddress
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
b = Val(TextBox2.Text)
a = Val(TextBox3.Text)
t = 0
For i = a To b
TextBox4.Text = i
ip = IPAddress.Parse("192.168.1." + TextBox4.Text)
respuesta = eco.Send(ip)
If respuesta.Status = NetworkInformation.IPStatus.Success Then
TextBox1.Text = TextBox1.Text + "Respuesta desde: " & respuesta.Address.ToString + vbCrLf
Else
TextBox1.Text = TextBox1.Text + "Sin Respuesta" + vbCrLf
End If
Next
End Sub
End Class