<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="https://www.dotnetzone.gr:443/cs/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Πρώτα Βήματα - Desktop Applications</title><link>https://www.dotnetzone.gr:443/cs/forums/80/ShowForum.aspx</link><description>Θέματα για όσους φτιάχνουν τα πρώτα τους Desktop Applications σε .NET Framework</description><dc:language>el</dc:language><generator>CommunityServer 2.1 SP3 (Build: 20423.1)</generator><item><title>Απ: ping tracerouter!!!</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/15018.aspx</link><pubDate>Thu, 20 Jul 2006 21:40:51 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:15018</guid><dc:creator>Νατάσα Μανουσοπούλου</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/15018.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=80&amp;PostID=15018</wfw:commentRss><description>&lt;BLOCKQUOTE&gt;&lt;table width="85%"&gt;&lt;tr&gt;&lt;td class="txt4"&gt;&lt;img src="/cs/Themes/mistblue/images/icon-quote.gif"&gt;&amp;nbsp;&lt;strong&gt;tomkarachris wrote:&lt;/strong&gt;&lt;/td&gt;&lt;/tr&gt;&lt;tr&gt;&lt;td class="quoteTable"&gt;&lt;table width="100%"&gt;&lt;tr&gt;&lt;td valign="top" class="txt4"&gt;pingSender.Send("192.168.1.1", timeout, buffer, options);&lt;br&gt;
&lt;br&gt;
            pingSender.PingCompleted += new PingCompletedEventHandler(PingCompletedCallback);&lt;br&gt;
&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;&lt;/BLOCKQUOTE&gt;&lt;br&gt;
&lt;br&gt;
Μήπως προλαβαίνει το response να έρθει πριν πιάσεις το event; Αντίστρεψε τις δύο παραπάνω γραμμές μεταξύ τους να δεις.&lt;br&gt;</description></item><item><title>Απ: ping tracerouter!!!</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/15017.aspx</link><pubDate>Thu, 20 Jul 2006 21:38:03 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:15017</guid><dc:creator>tommaσ</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/15017.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=80&amp;PostID=15017</wfw:commentRss><description>για καποιο λόγο δεν μου τα δείχνει στο richtextbox1 ,&lt;br /&gt;
&lt;br /&gt;
to&lt;br /&gt;
&lt;br /&gt;
 MessageBox.Show(reply.Status.ToString());&lt;br /&gt;
&lt;br /&gt;
δουλευέι μια χαρά!!!&lt;img src="/cs/emoticons/emotion-3.gif" alt="Surprise" /&gt;&lt;br /&gt;
&lt;br /&gt;</description></item><item><title>Απ: ping tracerouter!!!</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/15011.aspx</link><pubDate>Thu, 20 Jul 2006 20:38:54 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:15011</guid><dc:creator>tommaσ</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/15011.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=80&amp;PostID=15011</wfw:commentRss><description>private void button1_Click(object sender, EventArgs e)&lt;br /&gt;
&lt;br /&gt;
        {&lt;br /&gt;
&lt;br /&gt;
            Ping pingSender = new Ping();&lt;br /&gt;
&lt;br /&gt;
            string data = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa";&lt;br /&gt;
&lt;br /&gt;
            byte[] buffer = Encoding.ASCII.GetBytes(data);&lt;br /&gt;
&lt;br /&gt;
            int timeout = 12000;&lt;br /&gt;
&lt;br /&gt;
            PingOptions options = new PingOptions(64, true);&lt;br /&gt;
&lt;br /&gt;
            pingSender.Send("192.168.1.1", timeout, buffer, options);&lt;br /&gt;
&lt;br /&gt;
            pingSender.PingCompleted += new PingCompletedEventHandler(PingCompletedCallback);&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        private static void PingCompletedCallback(object sender, PingCompletedEventArgs e)&lt;br /&gt;
&lt;br /&gt;
        {&lt;br /&gt;
&lt;br /&gt;
            PingReply reply = e.Reply;&lt;br /&gt;
&lt;br /&gt;
            DisplayReply(reply);&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
        static void DisplayReply(PingReply reply)&lt;br /&gt;
&lt;br /&gt;
        {&lt;br /&gt;
&lt;br /&gt;
          &lt;br /&gt;
&lt;br /&gt;
            Form1 fors = new Form1();&lt;br /&gt;
&lt;br /&gt;
           &lt;br /&gt;
&lt;br /&gt;
            fors.richTextBox1.Text  += " |" + reply.Status.ToString();&lt;br /&gt;
&lt;br /&gt;
            fors.richTextBox1.Text += " |" + reply.Address.ToString();&lt;br /&gt;
&lt;br /&gt;
        }&lt;br /&gt;
&lt;br /&gt;
 ti kano la8os????? den ftanei pote sto PingCompletedCallback!!!</description></item><item><title>Απ: ping tracerouter!!!</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/14969.aspx</link><pubDate>Wed, 19 Jul 2006 22:36:29 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:14969</guid><dc:creator>tommaσ</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/14969.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=80&amp;PostID=14969</wfw:commentRss><description>θα δοκιμάσω και θα σας πω!!</description></item><item><title>Απ: ping tracerouter!!!</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/14960.aspx</link><pubDate>Wed, 19 Jul 2006 21:46:28 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:14960</guid><dc:creator>Mitsaras</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/14960.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=80&amp;PostID=14960</wfw:commentRss><description>"Σου δείχνουνε το δέντρο, και χάνεις το δάσος." Δεν το πιστεύω ότι μου ξέφυγε, και κατέφυγα στο .MyServices...</description></item><item><title>Απ: ping tracerouter!!!</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/14940.aspx</link><pubDate>Wed, 19 Jul 2006 19:13:45 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:14940</guid><dc:creator>dimkasta</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/14940.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=80&amp;PostID=14940</wfw:commentRss><description>Το 2.0 έχει έτοιμο ping&lt;br /&gt;
&lt;br /&gt;
Για τα υπόλοιπα όλο και κάτι θα μπορείς να φτιάξεις...</description></item><item><title>Απ: ping tracerouter!!!</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/14925.aspx</link><pubDate>Wed, 19 Jul 2006 07:50:27 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:14925</guid><dc:creator>Mitsaras</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/14925.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=80&amp;PostID=14925</wfw:commentRss><description>Θυμάμαι ότι αναγκάστηκα να χρησιμοποιήσω το "My" namespace μέσα από τη C#, για να κάνω ένα quick-n-dirty Ping.&lt;br /&gt;
&lt;br /&gt;
Νομίζω πως βρίσκεται στο Microsoft.VisualBasic.MyServices (πρέπει να κάνεις reference και το .dll πρώτα).</description></item><item><title>ping tracerouter!!!</title><link>https://www.dotnetzone.gr:443/cs/forums/thread/14924.aspx</link><pubDate>Wed, 19 Jul 2006 07:27:47 GMT</pubDate><guid isPermaLink="false">2622095e-976c-431a-859e-16783ec7ecd7:14924</guid><dc:creator>tommaσ</dc:creator><slash:comments>0</slash:comments><comments>https://www.dotnetzone.gr:443/cs/forums/thread/14924.aspx</comments><wfw:commentRss>https://www.dotnetzone.gr:443/cs/forums/commentrss.aspx?SectionID=80&amp;PostID=14924</wfw:commentRss><description>&amp;nbsp; θα ήθελα να μάθω αν υπάρχει στο framework καμια κλάση για να κάνεις ping traceroute, autowhois ktl ktl ktl .....&amp;nbsp; και φυσικα αν ξερετε κανένα ανοικτού κώδικα τέτοιο πρόγραμμα!!!!!!!&amp;nbsp; θα ήθελα να είναι σε c# h c++!</description></item></channel></rss>