Hello friends,
I have created menu in rss as :
/*********************************/
// Praveen Added on 15/4/08
// -----------------------------------------------------------------------------
//
// r_myshareview_menubar
// My Share View menubar
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_BAR r_myshareview_menubar
{
titles =
{
MENU_TITLE { menu_pane = r_myshareview_menu; }
};
}
// -----------------------------------------------------------------------------
//
// r_myshareview_menu
// Menu for "Options"
//
// -----------------------------------------------------------------------------
//
RESOURCE MENU_PANE r_myshareview_menu
{
items =
{
// added the new Options menu command here
MENU_ITEM
{
command = EmyShareView_View;
txt = qtn_EmyShareView_view;
},
MENU_ITEM
{
command = EmyShareView_Edit;
txt = qtn_EmyShareView_Edit;
},
// Praveen added my Status menu item 8/04/08
MENU_ITEM
{
command = EmyShareView_My_Share_Buddies;
txt = qtn_myShareView_My_Share_Buddies;
}
};
}
//------------------- Menu ForMy Share View------------------------------
//
// Praveen End 15/4/08
// --
/********************************/
and i am calling it in constructor as below:
void CMyShareView::ConstructL(CClient *aConnection,TInt aResourceId)
{
//this->ConstructL(R_MYSHAREVIEW_MENU);
//CreateMenuBarL(R_MYSHAREVIEW_MENU);
PrepareLC(aResourceId);
CAknDialog::ConstructL(R_MYSHAREVIEW_MENU);
}
But still i am not able to see the menu bar at run time.
Please help.
Regards,
Praveen.

Reply With Quote



