0

I want to check that GPRS avaibility between specific time interval in windows mobile. I tried code which request google every 30 seconds using timer but it hangs system and seems costly to check every 30 seconds.. Is there any other way I can get it done? and do not hang my system.

k-s
  • 2,192
  • 11
  • 39
  • 73

1 Answers1

0

If youe development environment is .NET, you can use the SystemState class to monitor for changes on the following SystemProperties:

ConnectionsCellularCount
ConnectionsCellularDescriptions

see : http://msdn.microsoft.com/en-us/library/microsoft.windowsmobile.status.systemstate.aspx for more information.

pdriegen
  • 2,019
  • 1
  • 13
  • 19
  • I used http://msdn.microsoft.com/en-us/library/microsoft.windowsmobile.status.systemstate.phonegprscoverage.aspx to check it. – k-s Apr 26 '12 at 07:28