informationNote = new ( ELeave ) CAknInformationNote();
informationNote->SetTimeout((CAknNoteDialog::TTimeout)0);
informationNote->ExecuteLD( *textResource );
//who free informationNote
thanks
informationNote = new ( ELeave ) CAknInformationNote();
informationNote->SetTimeout((CAknNoteDialog::TTimeout)0);
informationNote->ExecuteLD( *textResource );
//who free informationNote
thanks
Hi,
just becase inside this:
ExecuteLD
there is done deletion of the object informationNote.
SDK:ExecuteLD D means deletion...ExecuteLD()
virtual TInt ExecuteLD(TInt aResourceId);
Description
Loads, displays, and destroys the dialog.
Br V
Oh. I See
I think ExecuteLD has some code like this: delete this;...
the object informationNote must be created by new operation
I'm a PC programmer, a Symbian beginner
thanks you from reply