Hello Sir/Mam
Good Evening
I am new in symbian and i am having problem in creating a static page to show an information in text format on click menu event.
Please help me shortout the problem.
Printable View
Hello Sir/Mam
Good Evening
I am new in symbian and i am having problem in creating a static page to show an information in text format on click menu event.
Please help me shortout the problem.
basically you would implement the HandlePointerEventL function in your CCoeControl based container as explained in: [url]http://library.developer.nokia.com/index.jsp?topic=/S60_5th_Edition_Cpp_Developers_Library/GUID-E9191C31-4D09-4C95-85E4-4282ADEE1D82.html[/url]
save the information to be shown in internal variable(basically you can decide which way you save it you), and call DrawNow(). then system would call Draw() function, and you would in it to the text drawing according to the information you have saved in HandlePointerEventL..