I am using 3.2.606.0 version.
just now i rectified the problem using
bool CheckBluetoothconnection ( )
{
if(BluetoothRadio.PrimaryRadio != null)
return true;
else
{
MessageBox.Show ( "Bluetooth device not Installed. \rPlease plugin the Dongle or enable the bluetooth.",
"BlueTooth Connection Failed", MessageBoxButtons.OK ,MessageBoxIcon.Error );
return false;
}
}
but i am littele confused wheather it will work at continiously running program.
when discovering devices ,while connection i am calling this function
Is that fine to use this code?