|
|
User login
Feeds |
about listbox handlevent
|
|||||
| Mon, 2005-08-22 07:06 | |
|
hello all
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); } now in i want to go iAppView1 by clicking "OK" instend of iEikonEnv->InfoMsg(_L("Item1 is selected")). how can i do this?? thanks bashar |
|
Forum posts: 732
Forum posts: 27
many many thanks.
it is working nicely.
bashar