Welcome to the Forum Nokia Developer Discussion boards.
You can constuct your own status pane layout. See StatusPane API: Status pane API (and also Creating your own status pane resources)
Some additional useful links:
- Status panes
- Navigation Pane API: Using Navigation Pane API
This code works correctly for me:
Code:
// MyAppUi.cpp
/////////////
// Gets a pointer to the status pane
CEikStatusPane* sp = StatusPane();
// Changing status pane visibility to invisible
sp->MakeVisible( EFalse );
Also check this article in Wiki: How to make a full-screen application using Symbian C++.
For getting current date and time you can simply use:
Code:
TTime now;
now.HomeTime(); // get current date and time
for getting current profile name you can use Profiles Engine API (also see Retrieving profile information on S60 3rd Edition)
PS: имя пользователя у Вас говорящее :)