Hi All,
Is there any way i can make AppUi() work in container class ?
In my application I want to switch view according selected list index in HandleListBoxEvent() defined in container class.
Please help me ASAP....
Thanx..
Hi All,
Is there any way i can make AppUi() work in container class ?
In my application I want to switch view according selected list index in HandleListBoxEvent() defined in container class.
Please help me ASAP....
Thanx..
CEikEnv::Static()->AppUi(), might work..
Thanx 4 reply symbianyucca,
finally I solved my problem.
I use following line in my container class to obtain appui class instance and from that instance I able to call public method of AppUi class in container ....
CMyTestAppUi* iAppUi = reinterpret_cast<CMyTestAppUi*>( CCoeEnv::Static()->AppUi());