I need to display a lable on view for soemtime with the satauspane and the menubar invisible. After soemtime i want to display the statuspane and the menubar and remove the label.
All this to be done without the user clicking any button
If i have to use a timer for this enabling and disabling of the status pane and menubar ... could any one please give me some suggestions regarding how to go abt it?
its very urgent ... any one please give me some inputs to it ASAP
Thanks
Varsha.
RE: How to display a label on a view for sometime?
1970-01-01, 02:00#2
- Create a Label control
- Set Label's Rect to fill the whole application area. Use, for example, CEikAppUi::ApplicationArea() to get whole application area.
- Use e.g. RTimer or User::After() to get time to show the label
- Call Label's MakeVisible(EFalse) to hide the label.
Hope this helps.
Best Regards,
Marko / Forum Nokia
RE: How to display a label on a view for sometime?
1970-01-01, 02:00#3
I think that you can you add some code in the CountComponentControls() and ComponentControl() member functions. because the CountComponentControls() function return the number of controls in the view, and ComponentControl() return the point of every control in the view. so u can use a variable to indicate when to show the label