NetCF GPRS Connection (PocketPC)

Purpose:
Create a GPRS Connection with a cell phone line.

Usage:
‘I define it Public because I call this from a “Main” Class
‘for global connection purposes.

Public gprsCon As New GPRS

‘To connect
gprsCon.openGPRS(
True)

‘To disconnect
gprsCon.openGPRS(
False)

Class:
GPRS.vb

To be able to use this you need the OpenNETCF.org Smart Device Framework
All my class do is wrap the OpenNetCF functionality on a simple to use function.