information "ABOUT" an application.....by text editor or Dialog
| Sat, 2005-07-23 15:33 | |
|
hi, I want to add a option on main view of screen which can show information about application......just like as we get in any application after clicking "ABOUT"......which shows the relavant info about that applicaton......I think It can be done with the help of richtexteditor or Dialogbox.....but I m not getting the way...how I can make a start for this...... Can any one help me.....if there is any example application or sample code ....it will be more helpful to me.... Thanks Pankaj Wise People talk because they have something to say . Fools talk because thay have to say somthing. |
|






Forum posts: 183
Code as follows....
iQueryHandlerAO = CGlobalQueryQueryHandlerAO::NewL(*this);
iQueryHandlerAO->Start(); // construct the global message query
iGlobalMsgQuery = CAknGlobalMsgQuery::NewL();
HBufC* header = StringLoader::LoadLC(RS_SNOTEABOUTHD);
HBufC* message = StringLoader::LoadLC(RS_SNOTEABOUT);
// execute the global message query
iGlobalMsgQuery->ShowMsgQueryL(iQueryHandlerAO->iStatus,
*message, R_AVKON_SOFTKEYS_OK_EMPTY,
*header,KNullDesC);
CleanupStack::PopAndDestroy(message);
CleanupStack::PopAndDestroy(header);
Regards,
Isseyp