Hey sogar das ich schonwieder mit dem Visual C# nerve aber ich code momentan nen Ping checker da mein Internet manchmal spackt…
Code:
private void button1_Click(object sender, EventArgs e)
{
bool checkInternet = new Ping().Send(„google.de“, 500).Status == IPStatus.Success;
Ping p = new Ping();
String host = „google.de“;
byte[] buffer = new byte[32];
int timeout = 1000;
PingOptions pingOptions = new PingOptions();
PingReply reply = p.Send(host, timeout, buffer, pingOptions);
if (checkInternet)
{
label1.Text = „Du bist mit den Internet Verbunden“;
label1.BackColor = Color.Green;
Console.WriteLine(„Antwort in {0}ms erhalten“, reply.RoundtripTime);
Console.ReadLine();
}
else
{
label1.Text = „Du bist nicht mit den Internet verbunden“;
label1.BackColor = Color.Red;
}
Console.ReadLine();
}
geht alles bis auf das mit Console.WriteLine und Console.ReadLine… der wills halt ned anzeigen