Darker view after DialogBox

Login to reply to this topic.
Thu, 2004-07-22 09:27
Joined: 2004-06-01
Forum posts: 38
Hi all,

here is my problem, in my app i have ti use many dialogBox example :


" Doing this, are you sure ?"  stuff like that ....


BUT.....the view wich is diplayed after the dialogBox is ..... Darker ..... i can read i can see my controls, but in this view, all colors are darker than the colors on the other views.....Why ?

here some code of one of my simplier DlgBox :

Code:
TBool CMyAppDial::RunDlgLD()
{
CEikDialog* dialog=new(ELeave) CMyAppDial();
return (dialog->ExecuteLD(R_DIALOGUE_TERMINER_PARTIE));
}
CMyAppDial::CMyAppDial()
{
}

void CMyAppDial::PreLayoutDynInitL()
{
}

TBool CMyAppDial::OkToExitL(TInt /*aButtonId*/)
{
CQikAppUi* iAppUi = STATIC_CAST(CQikAppUi*, iEikonEnv->AppUi());    
   TVwsViewId id(KUidBrassie,KUidBrassieVueChJouRep );
iAppUi->ActivateViewL(id);
   return ETrue;
}
CMyAppDial::~CMyAppDial()
{
}

did i do something wrong ? or did i forget something?


thx all.

BnJ

-----------------------------------------------------------

BnJ, Developpeur Beta 2

  • Login to reply to this topic.