running application in background
| Thu, 2006-06-15 09:11 | |
|
|
Hi! I am working on Series60 2nd edition FP2. I have one application and I want to run it as a background process. How should I proceed. Moreover is it possible to load an application on series 60 such that it is neither registered in Application Manager nor a logo appears on menu. Please reply Thanks & regards |






Forum posts: 51
Good judgement comes from experience, and experience comes from bad judgement.
Experience is a wonderful thing. It enables you to recognize a mistake when you make it again.
Forum posts: 15
TApaTaskList taskList(CCoeEnv::Static()->WsSession());
TApaTask task = taskList.FindByPos(0);
CApaWindowGroupName* wgName = CApaWindowGroupName::NewLC(CCoeEnv::Static()->WsSession(), task.WgId());
if (wgName->AppUid().iUid == 0x0189C6E1) //USE YOURÂ APPLICATIONÂ UID INSTEAD OF 0xx189C6E1
{
  task.SendToBackground();
}
CleanupStack::PopAndDestroy(wgName);
This code is working.........
Forum posts: 98
Advise: just download guardian application from net and using FExplorer see how it does same functionality as you have asked.
Forum posts: 12
http://discussion.forum.nokia.com/forum/showthread.php?t=104212