rotovegasBoy
Programmer
I've got a gui written using the AWT libraries and i'm re-coding it using the swing libraries and i've run into a problem i've got a main application window with menus i'm adding a panel to it in a child class. In doing this the menus now drop down behind the panel. I've tried re ordering the way things are added but thats not working. Heres the code from my adding widgets part<br>p is currently a awt panel me is the main application and m* is any menu widget.<br><br><FONT FACE=monospace><br>me.getContentPane().add(me.p);<br>me.mb.add(m);<br>m.add(mm);<br>me.pack();<br>me.show();<br>me.setSize(900,700);<br>me.monitor2P();<br></font><br>