Click here to Skip to main content
15,906,558 members

Comments by NaveedAhmed (Top 2 by date)

NaveedAhmed 1-Dec-12 8:05am View    
thanx buddy for the information, but how could we find the port???
waiting for your answer..
NaveedAhmed 1-Dec-12 8:04am View    
you can get available ports by using.. the following code:


// Get a list of serial port names.
string[] ports = SerialPort.GetPortNames();

foreach (string port in ports)
{
listBox1.Items.Add(port);
}