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.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top