Problems with OpenNETCF.Desktop.Communication ?

  • Thread starter Hafsteinn Gunnarsson
  • 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?
 
N

Neil Cowburn [MVP]

Try this:

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

HTH
Neil
 
N

Neil Cowburn [MVP]

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

Charles

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top