Copy a text file from my desktop to my pda using c#

  • Thread starter Thread starter Ivan Sammut
  • Start date Start date
I

Ivan Sammut

Hi,

Is it possible to copy a text file from my PC directly to my PDA using c#.

Is it possible from my PC to call an application which resides on my PDA.

Thanks
Ivan
 
Ivan,

.... Is it possible to copy a text file from my PC directly to my PDA
using c#.

Yes, but you need to look into RAPI (you have to use unmanaged code,
but it's not that scary, honest) ... here is a good starting page with
some c# code

http://www.opennetcf.org/Forums/topic.asp?TOPIC_ID=122

.... Is it possible from my PC to call an application which resides on
my PDA.

Again, yes, and again you should look into RAPI - that same page
includes an "ExecuteProgram" function example.

It's the best page i've found on the subject.

HTH,
James Randle.
 
Hi

OpenNetCF.org provides a Desktop communication Library sample made in
..Net.
You can get that and use.

Thanks & Regards
Vikash
 
In addition to what others have said, if the desktop file to be copied
resides in a network share accessible to the PDA, you could do the copy
process from a program running on the PDA, also.

Paul T.
 
Back
Top