about listbox handlevent

Login to reply to this topic.
Mon, 2005-08-22 06:59
Joined: 2005-08-04
Forum posts: 27
i have implemented CAknSingleStyleListBox type listbox and HandleListBoxEventL() for the listbox event. now i can print the message using

iEikonEnv->InfoMsg(_L("Item1 is selected"));

now i want to know how can i go other view instend of iEikonEnv->InfoMsg(_L("Item1 is selected")). i have implemented HandleListBoxEventL() in my MyContainer() class and i have the coressponding MyView().

i have two views only.

in MyAppui() class i have created the view objects (2 objects) and the code is

void CEmailExpressAppUi::ConstructL()
    {
BaseConstructL(EAknEnableSkin);

      iAppView = CEmailExpressView::NewL();
      iAppView1 = CEmailExpressView::NewL();
       AddViewL(iAppView);   
      AddViewL(iAppView1);   
       SetDefaultViewL(*iAppView);   

Mon, 2005-08-22 07:09
Joined: 2005-08-04
Forum posts: 27
Re: about listbox handlevent
hello all

sorry this message is not complete.

sorry for this

now let me know that how can i delete my post

thanks

bashar
  • Login to reply to this topic.