1. How to transform FullScreen to FPE screen??
FullScreen: iEikonEnv->AppUiFactory()->StatusPane()->MakVisbile(EFalse);
SetRect(iView->ClientRect());
FPE: iEikonEnv->AppUiFactory()->StatusPane()->MakVisbile(ETrue); //this is not run
SetRect(iView->ClientRect());
in FPE,status pane is not displayed. how to solve this problem??
2. How to transform TBuf to TInt or char[] or char* or ??
// --------------------------------------------------------------
A) int <-> buf
use TBuf::Num()
and
TLex::Val()
// --------------------------------------------------------------