GPRS connection with WM2005 and OpenNetCF

  • Thread starter Thread starter Giuseppe Porcelli
  • Start date Start date
G

Giuseppe Porcelli

I am try to open GPRS connection with OpenNetCF library with my WM2005
develop in this way :

Dim om As New OpenNETCF.Net.ConnectionManager
Dim connected As Boolean = False
om.Connect(True, OpenNETCF.Net.ConnectionMode.Asynchronous)
While Not connected
If om.Status <> OpenNETCF.Net.ConnectionStatus.Connected Then
System.Threading.Thread.Sleep(1000)
Continue While
End If
connected = True
End While


But nothing to do, someone can help me ?
the while is infinite !!!
 
Can you open a GPRS connection manually on the device? What device is it?

Paul T.
 
Paul G. Tobey said:
Can you open a GPRS connection manually on the device? What device is it?

Sorry for delay answer,
I solved the problem, thank you.
 
You need to first setup your gprs setting in connection setting section...

My PDA works fine on this
 
Back
Top