Conversion awt to swing JFrame goes blank
I have been attempting convert an AWT UI to Swing. At first I tried just changing everything and that didn't work (blank screen) So I started converting the UI in reverse. Buttons to JButton's , panels to JPanels ect.
I have no problems until the end when I attempt to change from a Frame to a JFrame. Once I do I get a few seconds of my JFrame with my JMenubar then the entire JFrame goes blank (grey)
If I use a MenuBar I get the same thing except the menubar is still there.
I have read through the posts and docs. I assumed it was a getContentPane() problem. But I have all of the Add and setLayout going to the ContentPane...So I'm a bit lost.
Any ideas?

