my program :
if (!serialPort1.IsOpen)
{
serialPort1.Open();
}
else
{
serialPort1.Close();
serialPort1.Open();
}
serialPort1.WriteLine("///");
when serialPort1.Open , catch the wrong message 'IoException' and the 'COM8' port does't exist
But I am sure that 'COM8' is the bluetooth port , what's wrong ? who can help me out ?
thank you very much