Good day
Hi
i am trying to connect 2 phone using GSM Modem but i receive a general failure. i am using Bluetooth
should i also need to indicate that it is bluetooth in transport?
in GSM1 it connect , but in GSM2 i receive general failure.
did i do it the wrong way?
here is a sample code:
BFGSMModemClientX GSM1 = new BFGSMModemClientX();
BFGSMModemClientX GSM2 = new BFGSMModemClientX();
address1 = is a BluetoothDeviceAddress e.g (00:00:00:00:00:01) - phone1
address2 = is a BluetoothDeviceAddress e.g (00:00:00:00:00:02) - pnone2
try
{
GSM1.BluetoothTransport.Address = address1;
GSM1.Open();
}
catch()
{
}
try
{
GSM2.BluetoothTransport.Address = address2;
GSM2.Open();
}
catch()
{
}
thanks