Click here to Skip to main content
Sign Up to vote bad
good
See more: C#2.0
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.Net.NetworkInformation;
using System.Web;
using System.Net;
 

 
namespace WindowsFormsApplication6
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }
 
        private void button1_Click(object sender, EventArgs e)
        {
          
           
            Process.Start("ping",192.168.42.145");
            
         
 
        }
    }
}
 

 
I m usng this code bt as soon as i click on button ping window get open and closed ...pls help me....thanks in advance....
Posted 25-Dec-12 7:21am

Comments
Sergey Alexandrovich Kryukov - 25-Dec-12 13:58pm
Why?! —SA

1 solution

It makes absolutely no sense to start a separate process, especially just for ping. How are you going to interact with this process? — the processes are isolated.
 
Instead, use the class System.Net.NetworkInformation.Ping in your own process:
http://msdn.microsoft.com/en-us/library/system.net.networkinformation.ping.aspx[^].
 
Good luck,
—SA
  Permalink  
Comments
Niks_utake - 28-Dec-12 9:20am
ok thank you
Sergey Alexandrovich Kryukov - 28-Dec-12 12:35pm
You are welcome. Good luck, call again. —SA

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Your Filters
Interested
Ignored
     
0 Sergey Alexandrovich Kryukov 6,959
1 Prasad_Kulkarni 3,671
2 OriginalGriff 3,359
3 _Amy 3,332
4 CPallini 2,925


Advertise | Privacy | Mobile
Web04 | 2.6.130617.1 | Last Updated 25 Dec 2012
Copyright © CodeProject, 1999-2013
All Rights Reserved. Terms of Use
Layout: fixed | fluid