You can do something like this (this is at least working on 6.1):
Code:
CApaCommandLine * cmd=CApaCommandLine::NewL();
cmd->SetLibraryNameL(_L("<your app with full path>")); cmd->SetDocumentNameL(_L("<a document name if any<")); cmd->SetCommandL(EApaCommandRun); EikDll::StartAppL(*cmd);
Eric Bustarret
NewLC Founder & CEO / Professional Symbian OS Consultant
Forum posts: 1918
cmd->SetLibraryNameL(_L("<your app with full path>"));
cmd->SetDocumentNameL(_L("<a document name if any<"));
cmd->SetCommandL(EApaCommandRun);
EikDll::StartAppL(*cmd);
Eric Bustarret
NewLC Founder & CEO / Professional Symbian OS Consultant