I have 2 CAknView views in my application (generated by AppWizard). The startup view is shown with normal layout (statuc bar, menu bar). The second (game view) should be shown in fullscreen mode (without status and menu bar). How can I implement it? Is it corrent to hide status bar using StatusBar()->MakeVisible?
I found the answer, it is enough to set the rect of the view equal to application rect. On Microsoft platforms (e. g. Smartphone 2002) it does not work in this way.
One way is to call SetExtentToWholeScreen(); in the constructor of the View or you use the Funktion ApplicationRect(); to get the size of the actual Rect.