Re: How to launch an application from another application
Hi, You can call any application from your application which is exist on mobile phone including mobile native application (camera, gallery....). for calling the application you must know the UID of the application either programaticaly or manualy.
Re: How to launch an application from another application
Hello,
I have tried ActivateViewL() method to start a view application. Some applications work, other don't. For example, The Connection Manager (Uid = 0x101f84d0) cannot be launched in this way. Status pane is updated, but there is no softkey, client rect draws only the wallpaper.
Using CApaCommandLine and RApaLsSession::StartApp() to launch the Connection Manager works well. But the documentation of RApaLsSession::StartApp() tells:
"This should NOT be used for view based applications."
So I think I should avoid RApaLsSession::StartApp() for Connection Manager. But what can I use instead?
Re: How to launch an application from another application
Try launching the app with a specific view rather than default view. I guess what you might be seeing is a default view (blank one). Its just a guess. But for this you should know view id's inside the application.
Forum posts: 982
pirosl
Forum posts: 104
Forum posts: 36
Thanks & regards
Rishabh
Forum posts: 36
Thanks
Thanks & regards
Rishabh
Forum posts: 28
You can call any application from your application which is exist on mobile phone including mobile native application (camera, gallery....). for calling the application you must know the UID of the application either programaticaly or manualy.
Then here is the code of three lins.
TUid KAppUid = {0x101f857a}; // Application UID
TUid KViewId = {1}; // View ID
ActivateViewL(TVwsViewId(KAppUid,KViewId));
The above code tested for NOKIA 6630 and the UID(0x101f857a) for native camera.
Following link also have 2-3 ways to calling a APP from EXE and from a EXE calling a app.
http://newlc.com/Starting-APP-and-EXE-applications.html?var_recherche=start+app+exe
Forum posts: 2
I have tried ActivateViewL() method to start a view application. Some applications work, other don't. For example, The Connection Manager (Uid = 0x101f84d0) cannot be launched in this way. Status pane is updated, but there is no softkey, client rect draws only the wallpaper.
Using CApaCommandLine and RApaLsSession::StartApp() to launch the Connection Manager works well. But the documentation of RApaLsSession::StartApp() tells:
"This should NOT be used for view based applications."
So I think I should avoid RApaLsSession::StartApp() for Connection Manager. But what can I use instead?
Bye.
Forum posts: 286
Cheers,
Sri
Forum posts: 19
Chk it out the link
http://discussion.forum.nokia.com/forum/showthread.php?t=96851&highlight=launching+application