Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
1answer
31 views

Find/Copy All Files in a directory via RAPI on WinCE

I'd like to copy all files in a directory from my windows mobile device to PC. There's no API for that. Also there is no API to list all files in a directory of embedded device. I think I can list ...
2
votes
1answer
190 views

Reading the content of a PDA directory while sync with ActiveSync

I have a project in which I would need to copy files found within a PDA (in my case, it's a MC3000 if that makes any difference). I have ActiveSync installed and it create the syncronisation folder ...
2
votes
3answers
294 views

Archiving text messages (sms)

I want to archive the text messages on my WM phone to my PC, preferably as XML. Can I access them from a PC application, e.g. through RAPI? I have no experience in WM development, just PC, and then ...
1
vote
1answer
192 views

C++/MFC How to copy multiple files from PC to WinCE (Mobile Device)?

I am trying to copy entire directory including all the files and subdirectories inside from PC into WinCE (Mobile Device). I am aware of the RAPI.DLL to control files within WinCE, but I doesn't seem ...
1
vote
1answer
355 views

how to remotely install certificate on Windows CE using RAPI and ActiveSync

I'm creating .NET application which connects to WindowsCE device using Active Sync. I'm using OpenNETCF.Desktop.Communication.dll library to connect via RAPI but I didn't find any way to install the ...
1
vote
1answer
93 views

RAPI Approach: 1 static instance for the entire winforms app vs create,connect,dispose

In many places in our application we have code like this: using(RAPI rapi = new RAPI()) { bool connected = TryToConnectWithTimeout(rapi); if(connected) DoSomethingWithRapi(rapi); } This has ...
1
vote
1answer
200 views

Using RAPI in Windows Service

For accessing Windows CE devices from my desktop application I used self-written DLL. This DLL used RAPI to call necessary functions on device side. Everything has been working fine for years. But ...
1
vote
1answer
740 views

Rapi.dll / OpenNETCF slow issues on Visual Studio

I am referencing OpenNETCF.Desktop.Communication (Rapi.dll) in my project and have the following problem: When I for ex. "private RAPI mobjRapi = new RAPI();"... it takes about 5 minutes to execute ...
1
vote
1answer
388 views

CeRapiInit or CeRapiInitEx?

CeRapiInit() does not return until a device is connected and initialization is complete (synchronous). CeRapiInitEx() does, but requires a callback event handler (asynchronous). All I want is a ...
1
vote
3answers
6k views

RAPI copy file using OpenNETCF.Desktop.Communication.dll

I’m currently using the OpenNETCF.Desktop.Communication.dll to copy files from my desktop to a CE device, but I keep getting an error: ‘Could not create remote file’ My development environment is ...
1
vote
1answer
699 views

Debugging DLL Called With CeRapiInvoke

I'm trying to debug into a C dll that is invoked on a Windows Mobile device using CeRapiInvoke() (Technically RAPI.Invoke() from OpenNETCF) from a Windows box. I'm very familiar with attaching to a ...
1
vote
1answer
412 views

IRAPIStream COM Interface in .NET

I'm trying to use the OpenNETCF RAPI class to interact with a windows mobile device using the RAPI.Invoke() method. According to the following article: ...
0
votes
0answers
209 views

using OpenNETCF RAPI functionalities?

I would like to know if this is the correct way to deal with OpenNETCF RAPI functions because I use third party tool for device lock down, but sometime I encounter error when creating RAPI object in ...
0
votes
0answers
99 views

OpenNETCF DeviceFileExists

I wonder if this is correct behavior not. I create three RAPI variable types(rapi1,rapi2,rapi3), and I only initiate rapi1 to connect to the device while other twos are not connected, but when I call ...
0
votes
1answer
457 views

Killing a WinCE device process from a desktop app

I'm copying files from the desktop to a WinCE device (via the RAPI API), and if the main WinCE program is running, I need to kill it, update and restart it again. So far, I manage to copy the files ...
0
votes
3answers
187 views

Get the number of Pocket PC devices connected to my PC

Hii... I want to find out the number of Pocket PC devices(In my Case they are RFID reader's).Is there any way to do thi using RAPI in C#.net?can you please help me out....
0
votes
1answer
469 views

Building RAPI.h in VS 2005, fail on open include file

this may sound too simple, but I'm missing something. I need to write a RAPI Windows Console app using C++. I'm currently using VS2005. I've created a brand new empty Windows Consol app ...
0
votes
1answer
155 views

CeGetSystemInfo doesn't fill the struct passed by reference

I'm trying to get information about a Windows Mobile device from a desktop application (written in C#). I searched the MSDN and found that the function I need is in rapi.dll: VOID CeGetSystemInfo ...
0
votes
1answer
303 views

Windows Mobile app copy file to desktop?

Is it possible to write a WinMo app that copies files from the device to the attached desktop? I know RAPI works from the desktop to the mobile, but I'd like to turn that around if I can.
0
votes
1answer
412 views

Connecting multiple devices through RAPI2

The Microsoft RAPI2 interface is designed with the ability to talk to multiple devices. But, ActiveSync 4.5.0 allows only allows one device at a time to connect and only allows it over a USB ...
0
votes
3answers
1k views

Accessing a SQL Server CE database on a Windows Mobile 6 device

I have a mobile app that writes to a SQL Server CE database on the device. I want to write a desktop application that can read this data and export it in CSV format. I have been looking at RAPI ...
-1
votes
0answers
30 views

VB6 tutorial for EDB

I have an existing application written in VB6 that writes data remotely - via RAPI - to a CEDB database on a mobile device. Now I have to switch to the EDB database, and I just can't find any relevant ...