Most voted "jmenu" questions
Jmenu is an implementation of a menu in java-swing - a popup window containing Jmenuitems, which is displayed when the user selects an item in Jmenubar. Use this tag when the subject is related to this component.
Learn more…6 questions
Sort by count of
-
2
votes2
answers560
viewsHow to create shortcut to open a Jmenu?
Speak guys, does anyone know how to create a keyboard shortcuts method to open a Jmenu. For example, click F1 or CTRL + "something" and open a screen.
-
1
votes1
answer352
viewsOpen Panel through a Jmenuitem
I need to know how to make one JMenuItem open a JPanel, that is, by clicking on JMenuItem, open the corresponding Jpanel, this in Eclipse, via windowBuilder. This is the image of my screen with the…
-
1
votes1
answer143
viewsShortcut to main panel via Jmenuitem
I’m working on eclipse Mars 2.0, where do I use the windowBuilder, and I’m having trouble turning on the shortcut: Consultar -> Dia (mntmDia) to the main page panelConsultarDia, that is, when…
-
1
votes1
answer544
viewsHow to call a class through another class using Jmenuitem?
I have two classes in the same package, one called Calc, which is a simple calculator, whose code is below: public Calc(){ super("Calculadora"); Container tela = getContentPane(); setLayout(null);…
-
1
votes1
answer487
viewsInsert a submenu into a Jmenu
When I click on the woman or man icon on JFrame, is called a JPanel where I enter the data such as weight and height. But by clicking save, I cannot call another JPanel to show the result of the…
-
0
votes1
answer268
viewsClose screen through Jmenuitem
I’m doing a simple system of enrollment of students and teachers and wanted to, when interacting with a JMenuItem called get out of, the program closed. I did the whole algorithm, but this with that…