Problems with OpenNETCF.Desktop.Communication ?

  • Thread starter Thread starter Hafsteinn Gunnarsson
  • Start date Start date
H

Hafsteinn Gunnarsson

I am trying do use the OpenNETCF.Desktop.Communication.DLL in my solution. I
am using it as follows:

private void CopyFilesFromPC()
{
RAPI Rapi = new RAPI();
Rapi.CopyFileToDevice(DEST_FILE,SOURCE_FILE,true)
}

When calling the constructor I get the following Error:

System.MissingMethodException' occurred in
OpenNETCF.Desktop.Communication.dll

Any Ideas?
 
Try this:

RAPI Rapi = new RAPI(true);
Rapi.CopyFileToDevice(SOURCE_FILE, DEST_FILE,true);

HTH
Neil
 
I actually changed the "CopyFileToDevice" line, too. You had the source and
destination files the wrong way around!!!
 
Hi,

Has anyone wrote a wrapper to call the NDIS for the MAC address of Access
Point CF?
A good source site would be appreciated.

For PocketPC 2002 or 2003.

Thanks in advance.
Charles
 
Back
Top