Hi all,
I have made one GUI which when run in netbeans without JME works perfectly, but when run with JME the texts in the buttons go missing… and drop down boxes become too small in size…
This is the one without using JME…
And this one while using JME…
Could someone please identify the problem here…
Thank you
Pranav
I don't know how the netbeans GUI-builder works (e.g. does it load from file, or does it generate java source etc.), but it seems you are missing some resource (maybe language?) so that all the string values are missing
Maybe even people familiar with netbeans will need the code you use to load the GUI.
Are you still using GroupLayout for your GUI? If yes, try something different, and see how that turns out. GridBagLayout is just as powerful, and I've been using it a lot and never had any problems with it in JMEDesktop.
Of course, if you have localization turned on in the gui builder, you'll want to check if the string resources are accessible (as irrisor said).
Got it…!!
String resources were unaccessible…
Thank you…