System Settings on the PocketPC

  • Thread starter Thread starter Theophrastos Mantadelis
  • Start date Start date
T

Theophrastos Mantadelis

Does anybody know how I can read and write (change) the
PocketPC settings from a VB program.

I wan to change the power setting turn of device while my
pocket pc does a very slow procedure and I don't want it
to close because it ruins it!
 
If you just need to keep the device awake while you do something, you can
P/Invoke SystemIdleTimerReset(), which is declared for C as follows:

void WINAPI SystemIdleTimerReset(void);

That should stop the system from thinking that the device is idle, anyway.
Is that enough?

Paul T.
 
Back
Top