Question Java programming- GUI display changes

Bj

Addon Developer
Addon Developer
Donator
Joined
Oct 16, 2007
Messages
1,886
Reaction score
11
Points
0
Location
USA-WA
Website
www.orbiter-forum.com
:censored:

In NetBeans;
before.jpg

When running;
after.jpg


why do these programs have nothing better to do than annoy?

(Same relative thing happened in Eclipse. Different project entirely though.)


oh great, I closed it, reopened it and it showed as the same pic as pic 2....

Perfect, I try editing something, and it keeps clearing it after I type it.:compbash:

:censored::censored::censored: the first pic didn't even past properly. :censored:

Edit:

OK

I changed all the text, and apparently something got 'renamed' in the process because the progress bar auto-gen code was all messed up.
(correct pic this time)
before2.jpg

...And goes to this.
after2.jpg


Oh, and when I close it again, it reverts to the incorrect version again.

Really getting :censored: off. Really like it when your last several hours of work goes down because of some computer glitch. Great, now I have to squeeze it all in a few hours before work tomorrow.

Sorry, I have to turn off my computer before I :

computer-out-window.jpg
 
Last edited:
It sounds like a string resource is missing from a property file somewhere: "I18N" refers to internationalization, where a resource token in your Java code is translated to actual text displayed to the user at runtime. This lets programs be "internationalized" without changing the source code for each spoken language.
 
It sounds like a string resource is missing from a property file somewhere: "I18N" refers to internationalization, where a resource token in your Java code is translated to actual text displayed to the user at runtime. This lets programs be "internationalized" without changing the source code for each spoken language.


Haha fun, times like these I hate computers. :)

Thanks for the idea, going off of it, I found the reason:

http://forums.netbeans.org/post-60421.html&highlight=


I found the answer to this problem, its simple. You have to clean and rebuild your project!!

Reason for this is that the "ResourceMap" that contains things like the label and button texts, splits itself when you add new components to the Form/Dialog/Panel etc.

They should really fix that... I had a nice layout going until it erased all the text.
 
Back
Top