Hi,
I'd like to know if it's possible to change BT Name with WCL. I saw that wclBluetoothRadio got the "setName" method, which seems to not work.
I used :
wclBluetoothRadio Radio = GetSelectedRadio();
if (Radio != null)
{
Radio.SetDiscoverable(false);
Radio.SetName("NEWNAME");
Radio.SetDiscoverable(true);
}
I saw
here to use another dll (in OLD folder). I have this dll, but i don't know where to put her... I use Microsoft Visual Studio Express 2012 actually.
May anyone help me on this?
Many thanks,