Hiw can i add icon in menu ?
Hi
I can add icons and texts in menuitem
menuItem =new JMenuItem("Both text and icon",new ImageIcon("images/middle.gif"));
But how is it possible to to add icons in menu itself...
JMenu new1 =new JMenu("New",new ImageIcon("images/middle.gif"));
it is showing an error how can i solve this...

