Hi,
In helloworldbasic example (C:\Symbian\9.3\S60_3rd_FP2_Beta\S60Ex\HelloWorldBasic) I have changed the implementation of CHelloWorldBasicAppUi::HandleCommandL. After showing the note using EHelloWorldBasicCommand1, the "Show open applications" disappears. Is it normal? Thanks.
Code:void CHelloWorldBasicAppUi::HandleCommandL( TInt aCommand ) { ... case EHelloWorldBasicCommand1: { // Load a string from the resource file and display it HBufC* textResource = StringLoader::LoadLC( R_HEWB_COMMAND1_TEXT ); //CAknInformationNote* note = new ( ELeave ) CAknInformationNote; // //// Show the information Note with //// textResource loaded with StringLoader. //note->ExecuteLD( *textResource ); CAknGlobalNote* note = CAknGlobalNote::NewLC(); note->ShowNoteL(EAknGlobalInformationNote, *textResource); CleanupStack::PopAndDestroy(note); // Pop HBuf from CleanUpStack and Destroy it. CleanupStack::PopAndDestroy( textResource ); } break; ... }



