I have a application using the JMenuBar withe some MenuItems . The application frame also contains some other components like buttons , textfields etc. The problem is that the menuitem are hiding below the other components whenever the menubar is clicked. That is i am able to see the menuitems which are above the other components. Please reply soon
Cindy Glass
"The Hood"
Sheriff
Joined: Sep 29, 2000
Posts: 8521
posted
0
If you have a JMenuBar you need to be using JMenu's and JMenuItems. If you mix AWT components (which are heavyweight) and Swing components (which are lightweight = no os peer component) the AWT stuff will hide the swing stuff.
"JavaRanch, where the deer and the Certified play" - David O'Meara
Ashish Bhaskar
Greenhorn
Joined: Mar 26, 2001
Posts: 2
posted
0
Hi Cindy, I am using JMenu with JMenuItems ....but the problem is not over..
Anonymous
Ranch Hand
Joined: Nov 22, 2008
Posts: 18944
posted
0
What about the other components you mentioned? Are they JButtons and JTextFields or are you using AWT components?