How to add a menuItem inside/sub of another menuItem in Java? is it possible ?

link|improve this question

68% accept rate
3  
Did you read How to Use Menus? – Howard Dec 30 '11 at 10:21
oh can I have a menu inside a menu?? didn't know that. I've been searching for the keywords menuItem and nothing shows up in google that's why I asked here. – iMohammad Dec 30 '11 at 10:23
feedback

2 Answers

up vote 2 down vote accepted

try following

submenu1 = new JMenu("my submenu");
JMenuItem    menuItem1 = new JMenuItem("submenu items");

submenu1.add(menuItem1);

menuItem1 = new JMenuItem("item1");
submenu1.add(menuItem1);

refer example for more details

link|improve this answer
just tried it. I was adding a JMenuItem inside a JMenuItem and the menu directly crashes. I didn't know you can add JMenu inside a JMenu. Thanks :) – iMohammad Dec 30 '11 at 10:30
look at docs.oracle.com/javase/tutorial/displayCode.html?code=http://… here is a full programm – Hemant Metalia Dec 30 '11 at 10:35
feedback

Add JMenu instead of the first JMenuItem.

link|improve this answer
checking @Howard link. I think I missed something in Menus GUI. – iMohammad Dec 30 '11 at 10:24
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.