Running App in the Back ground in Symbian C++
Hi,
I am working on a project in which i want to run the app Continuously in the background when ever phone is switched on.
If i am using FR,RI then the application will start in the main screen when phone is switched on. But i have to run it in the back ground.
Re: Running App in the Back ground in Symbian C++
[QUOTE=akki123;907413]Hi,
I am working on a project in which i want to run the app Continuously in the background when ever phone is switched on
[/QUOTE]
For starting up an exe whenever the device is switched on, the following article can be referred : [url]http://www.developer.nokia.com/Community/Wiki/How_to_autostart_an_application_on_boot_up_using_Startup_List_Management_API[/url]
Is your exe a GUI based & you need to run it in background?, following can be reffered for this purpose : [url]http://www.developer.nokia.com/Community/Wiki/Sending_an_application_to_background[/url]
or
if you want to run an application (without GUI) in background then choose the option 'console exe' from carbide.c++ new project option & make that exe as auto run on boot
[QUOTE=akki123;907413]
If i am using FR,RI then the application will start in the main screen when phone is switched on. But i have to run it in the back ground.[/QUOTE]
FR,RI runs the exe as soon as it is installed in the device(auto-run on boot is a different feature)
Re: Running App in the Back ground in Symbian C++
[QUOTE=vineet.jain;907418]For starting up an exe whenever the device is switched on, the following article can be referred : [url]http://www.developer.nokia.com/Community/Wiki/How_to_autostart_an_application_on_boot_up_using_Startup_List_Management_API[/url]
Is your exe a GUI based & you need to run it in background?, following can be reffered for this purpose : [url]http://www.developer.nokia.com/Community/Wiki/Sending_an_application_to_background[/url]
or
if you want to run an application (without GUI) in background then choose the option 'console exe' from carbide.c++ new project option & make that exe as auto run on boot
FR,RI runs the exe as soon as it is installed in the device(auto-run on boot is a different feature)[/QUOTE]
Thank you for the support.