SubMenu Using RSS?

Login to reply to this topic.
Tue, 2007-12-11 08:11
Joined: 2007-07-18
Forum posts: 13

Hi,

Can Anybody tell me How to create submenu using RSS file.

Thanks in Advance...!!!


Tue, 2007-12-11 13:06
Joined: 2007-08-29
Forum posts: 136
Re: SubMenu Using RSS?

Hi,

you can create sub menu using RSS file. Add this code in ur rss file. it will work. Smiling


Thanks & Regards
Ram

Symbian OS 9.1,S60 3rd edition MR,and Carbide.C++

Tue, 2007-12-11 13:06
Joined: 2007-08-29
Forum posts: 136
Re: SubMenu Using RSS?

Hi,

you can create sub menu using RSS file. Add this code in ur rss file. it will work.

RESOURCE MENU_BAR r_Test_menubar
{
titles =
{
MENU_TITLE {menu_pane = r_Test_menu;}
};
}

// ---------------------------------------------------------
//
// r_Test_menu
// Menu for "Options"
//
// ---------------------------------------------------------
//
RESOURCE MENU_PANE r_Test_menu
{
items =
{
MENU_ITEM { txt = "Menu"; cascade = r_Test_sub_menu},
MENU_ITEM {command = ETestCommand1; txt = "Say Hey!";},
MENU_ITEM {command = EAknSoftkeyExit; txt = "Exit";}
};
}

RESOURCE MENU_PANE r_Test_sub_menu
{
items =
{
MENU_ITEM { txt = "sub Menu 1";},
MENU_ITEM { txt = "sub Menu 2";},
MENU_ITEM { txt = "sub Menu 3";}
};
}

Smiling


Thanks & Regards
Ram

Symbian OS 9.1,S60 3rd edition MR,and Carbide.C++

Fri, 2008-05-16 13:49
Joined: 2008-04-23
Forum posts: 35
Re: SubMenu Using RSS?

Hi RB_Sahu
thanks,


ravinder singh rawat

  • Login to reply to this topic.