How to launch an application from another application

Login to reply to this topic.
Fri, 2006-04-28 13:17
Joined: 2006-04-17
Forum posts: 36
I have an two applications in two different SIS files. I want to launch one application from other. Is their a way to do it.

thanks

rishabh

Thanks & regards

Rishabh


Fri, 2006-04-28 13:50
Joined: 2004-05-24
Forum posts: 982
Re: How to launch an application from another application
Start sis instalation from other sis instalation? Or start .app from .app? If this is the case check for RApaLsSession

pirosl

Fri, 2006-04-28 16:58
Joined: 2006-04-05
Forum posts: 104
Re: How to launch an application from another application
Sat, 2006-04-29 12:57
Joined: 2006-04-17
Forum posts: 36
Re: How to launch an application from another application
Quote from: pirosl
Start sis instalation from other sis instalation? Or start .app from .app? If this is the case check for RApaLsSession
I want to start sis application from sis

Thanks & regards

Rishabh

Tue, 2006-05-02 09:36
Joined: 2006-04-17
Forum posts: 36
Re: How to launch an application from another application
How can I use the applications provided in my mobile phone as part of my aplication. I want to use the GPRS services in  my application

Thanks

Thanks & regards

Rishabh

Thu, 2006-05-11 09:13
Joined: 2005-06-21
Forum posts: 28
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.

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
Thu, 2007-03-22 17:21
Joined: 2005-09-22
Forum posts: 2
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?

Bye.
Fri, 2007-03-23 08:05
Joined: 2004-05-21
Forum posts: 286
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.


Cheers,
Sri
Tue, 2007-04-17 07:56
Joined: 2006-12-28
Forum posts: 19
Re: How to launch an application from another application
  • Login to reply to this topic.