Sending files to PocketPc

  • Thread starter Thread starter Zanna
  • Start date Start date
Z

Zanna

Hi.

My question is: can I send a file from my PC to a specified folder into the
PocketPC without passing by the ActiveSync explorer window?

I want to do a little app for the costumers that do an automatic upload, but
you know... I don't want to stay 1 hour at the phone with the *l*user to do
a copy from the explorer of the PC to the explorer of the PPC...

;)
 
From a desktop application you can use RAPI (Remote API). If your desktop
application is written with .NET you can use the OpenNETCF Communications
library which wraps RAPI functionality (including file copying) with a
simple API - www.opennetcf.org/communication.asp

Peter
 
I done it in this way in VB6. These are two API functions which can transfer
files. ADOFILTR.dll is installed with MSActive Sync

-------------------------

Public Declare Function DEVICETODESKTOP Lib "adofiltr.dll" (ByVal
desktoplocn As String, ByVal tablelist As String, ByVal sync As Boolean,
ByVal overwrite As Integer, ByVal devicelocn As String) As Long

Public Declare Function DESKTOPTODEVICE Lib "adofiltr.dll" (ByVal
desktoplocn As String, ByVal tablelist As String, ByVal sync As Boolean,
ByVal overwrite As Integer, ByVal devicelocn As String) As Long

--Imran
 
Back
Top