Guest User

Guest User

  • Tech Writer
  • 529
  • 36.3k

Need help for Ping Software

Apr 17 2021 6:56 PM
i
 
private void button1_Click(object sender, EventArgs e)
{
Ping myPing = new Ping();
PingReply reply = myPing.Send(textBox1.Text, 1000);
textBox9.Text = "REPLY FORM :- " + reply.Address + " BYTES :- " + reply.Buffer.Length + " Time :- " + reply.RoundtripTime + " TTL :- " + reply.Options.Ttl;
}
 
i try to continue  muliti line but show me one line 
 

Answers (4)