Hello everyone,
I try to connect to a GPRS modem with a WinCE 5 device. I use VB.Net Compact Frmaework and I have the SDF 2.2.
When I try a little project like this(I included all the OpenNetCF DLL files in the project):
Imports
System.Windows.Forms
Imports System.Net
Public Class Form1
Private Sub Command1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Command1.Click
Dim ConCount As Integer = OpenNETCF.Net.ConnectionManager.ConnectionDetailItems.Count
MsgBox(ConCount)
End Sub
End Class
I get this error when debugging:
Can't find PInvoke DLL 'cellcore'.
I spent the whole morning searching the cellcore.dll but I can't find it on my development PC. The only thing I find on my development PC is the cellcore.lib in :
C:\Programme\Microsoft Visual Studio 8\SmartDevices\SDK\PocketPC2003\Lib\armv4
C:\Programme\Microsoft Visual Studio 8\SmartDevices\SDK\Smartphone2003\Lib\armv4
So is this file available only for PocketPC2003 and Smartphone2003?
How can I use the OpenNETCF.Net.ConnectionManager without having this file in WinCE 5?
Greetings
Thomas