Jump to content

How to make a scheduler?


Recommended Posts

Guest smartfone
Posted

Can somebody give me some hints about these elements:

1. How to launch a program automaticaly when smartphone turns on?

2. How to receive timer event in eVC?

Guest MrMagoo
Posted

Launch an app on boot can be done either from :

a) StoragewindowsStartUp by placing a shortcut to your app

:lol: add your app to registry HKLMinit section

Receive Timer event can be done by starting a timer:

i = SetTimer(hwnd,1,2000,NULL);

and handling the WM_TIMER event in your WndProc

or by specifying a callback function to the settimer call

Please sign in to comment

You will be able to leave a comment after signing in



Sign In Now
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.