As the title says can I read the launch command line parameters from within a widget. eg..
If I wrote a Symbian app and ran my widget using the following code
_LIT8( KOption, "Hello Widget!!" );
CApaCommandLine *command = CApaCommandLine::NewLC();
command->SetExecutableNameL( appInfo.iFullName );
command->SetCommandL( EApaCommandRun );
command->SetTailEndL( KOption );
RApaLsSession apaSession;
apaSession.Connect();
apaSession.StartApp( *command );
apaSession.Close();
Where appInfo.iFullName is the full path and name of the widget I wish to launch. How do I not retrieve the command line agument "Hello Widget!!" that I passed from within the widget code?? Any ideas??

Reply With Quote

