Hello,
Is it possible to make the dialog , which is represented by CAknMessageQueryDialog, to appear full screen . I tried to fetch the screen width and height , and tried to do SetSize on the dialog:-
TSize aSize;
TInt WidthOfScreen = CEikonEnv::Static()->EikAppUi()->ApplicationRect().Width();
TInt heightOfScreen = CEikonEnv::Static()->EikAppUi()->ApplicationRect().Height();
aSize.SetSize(WidthOfScreen ,heightOfScreen );
dlg->SetSize(screen_size);
I get Width and height values 360 and 640 respectively.
but the dialog still doesnt appear full screen.
Any suggestions?
Thanks a lot in advance



