Hello ppl i am new here, i'm sorry if my english is bad but its not my native language well the trouble is the next i have an usb dongle connected to my pc and the next code in VB .NET
Public Class Form1
Private service As Guid = New Guid("{AACD90FD-D87B-491B-96E4-8A66378A3CB2}")
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim blueradio As BluetoothRadio = BluetoothRadio.PrimaryRadio
Dim blueserver As New BluetoothListener(service)
Dim conexionpen As Boolean = False
Dim blueclient As BluetoothClient = Nothing
blueradio.Mode = RadioMode.Discoverable
blueserver.Start()
blueclient = blueserver.AcceptBluetoothClient
End Sub
The thing is when i go to my blackberry or my nokia E215 i can see the bluetooth listening in my pc but when i connect to the listener is like not receiving any incomming connection and it stucks in the blueserver.AcceptBluetoothClient call .. is like its not getting the pending from my cells i think the problem is in the creation of the blueserver's object but i have no idea what it could be .. also i could pair my cells from my code, when i go from my pc to the cells it goes ok but when my cells wanna go to my pc its not working, maybe someone can figure this out, because i am becoming crazy and i can't find any topic related to my issue.
Thanks in advance.