information "ABOUT" an application.....by text editor or Dialog

Login to reply to this topic.
Sat, 2005-07-23 15:33
Joined: 2005-06-11
Forum posts: 85
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.


Sat, 2005-07-23 21:21
Joined: 2005-03-06
Forum posts: 183
Re: information "ABOUT" an application.....by text editor or Dia
Use a global Message Query instead, it works for me Smiley

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

  • Login to reply to this topic.