Hi,
I've paired my PDA device with a bluetooth printer combo adapter.
This is my code:
Dim btnet2 As New InTheHand.Windows.Forms.SelectBluetoothDeviceDialog
Dim btInfo As InTheHand.Net.Sockets.BluetoothDeviceInfo
btInfo = btnet2.SelectedDevice
Dim btClient As New InTheHand.Net.Sockets.BluetoothClient
Dim EP As InTheHand.Net.BluetoothEndPoint = New InTheHand.Net.BluetoothEndPoint(btInfo.DeviceAddress, InTheHand.Net.Bluetooth.BluetoothService.SerialPort)
EP.Port = 8
btClient.Encrypt = False
btClient.Connect(EP)
If btClient.Connected Then
Dim btPort As InTheHand.IO.Ports.BluetoothSerialPort = InTheHand.IO.Ports.BluetoothSerialPort.CreateClient("COM", "8", EP)
End If
btClient.Close()
Now I need to save this configuration ("COM8" assigned to outgoing bluetooth) on my pda.
How can I do this?
Is there a key in the registry that a must modify?
Thanks in advance.