Checking whether ActiveSync is running in PDA application.

  • Thread starter Thread starter deneb
  • Start date Start date
D

deneb

hello?

I'm relatively new to developing PDA application using .NET CF.
Is there anyway to check whether ActiveSync is running in PDA
application??

As far as I know, In desktop application, Using RAPI can do that.. (but
I didn't try to do that yet..)

Anyway, what I want to know is that a PDA application can do that.

Thank you.
 
So, you want to know if some random other application is running on the same
device as your program, right? Use the usual type of calls: enumerate
top-level windows and look for one named what ActiveSync names its window,
enumerate the running processes and look for one called "repllog.exe", which
is the name of ActiveSync. Neither of these will tell you if sync is in
progress, just whether the program is running.

Paul T.
 
Back
Top