Hello
I want know how can i add new submenu when i click on menu..like
Send---when i clikk on Send then my application show like this
Send-->SMS
-->MMS
-->Other
Regards
Anupam..
Hello
I want know how can i add new submenu when i click on menu..like
Send---when i clikk on Send then my application show like this
Send-->SMS
-->MMS
-->Other
Regards
Anupam..
basically the send menu is propably the only place where you could add your own stuff.
And how to do it see the MTM example found from downloads in this forum.
yucca
if you are looking for a general idea how to write cascade menus then it is very simple...
Just define it in resource file like this:
Code:RESOURCE MENU_BAR my_menubar { titles= { MENU_TITLE { menu_pane=r_menu_1; txt=""; } }; } RESOURCE MENU_PANE r_menu_1 { items= { MENU_ITEM { command=ECommand1; txt = "command1"; }, MENU_ITEM { cascade=r_submenu; txt = "submenu"; } }; } RESOURCE MENU_PANE r_submenu { items= { MENU_ITEM { command=ECommand2; txt = "command2"; } }; }