Hi,
i've a question for you.Can anyone tell me how from an application i can open another application in the file system?
Thank in advance.
Printable View
Hi,
i've a question for you.Can anyone tell me how from an application i can open another application in the file system?
Thank in advance.
Hi,
If you know the application UID, you can launch it by calling to function CCoeAppUi::ActivateViewL(const TVwsViewId& aViewId);
Best Regards,
Ari / Forum Nokia
Hello
i use tis code i found on symbian mailing list :
TFileName appName=_L("Z:\\system\\apps\\web\\WEB.APP");
CApaCommandLine* cmdLine=CApaCommandLine::NewLC();
cmdLine->SetLibraryNameL(appName);
cmdLine->SetCommandL(EApaCommandRun);
RApaLsSession ls;
User::LeaveIfError(ls.Connect());
CleanupClosePushL(ls);
User::LeaveIfError(ls.StartApp(*cmdLine));
CleanupStack::PopAndDestroy(2); // ls and cmdLine
Hii
I m using same code but its give me a error
E32USER-CBase 71
pls tell me some other way
Regards
Vyom
Hi Vyom
Check again your code, it is propably not the same as with this example above, it's propably the one which I wrote about a month ago, where indeed I forgot to add the last line to pop stuff out from cleanupstack.
yucca
Dear Yacca
Thanks a ton for ur replies......
but problem still is there.......i apply same things including CleanupStack::PopAndDestroy(2) line.....
but still problem is there......
pls check it out again....
Regards
Vyom
I was trying to run one app from another from a long time
This code really did the trick for series60 emuletor.
phoneynk
[email]vaish_ankur@yahoo.com[/email]