Search Results

1
vote

OS recommendation to run Java Swing App on very basic hardware

Have a look at the various JEOS flavors ("Just enough operating system"). …
3
votes

virtual listbox in Swing

The problem is that even using intelligent pre-fetch you cannot guarantee that all visible rows were prefetched when they are needed. I'll sketch a solution which I used once in a project …
0
votes

Java Nimbus LAF with transparent text fields

I think the question is how to interpret "opaque" and "background". For a JTextfield there is the question: "what visible parts are the background?". I'd define "background" as the parts of the bo …
0
votes

how to focus a JFrame?

Toggle alwaysOnTop See here: http://forums.sun.com/thread.jspa?threadID=5124278 …
1
vote

Java Swing custom text JEditorPane

You can use DefaultStyledDocument together with AttributeSet: SimpleAttributeSet attr = new SimpleAttributeSet(); StyleConstants.setBold(attr , true); Styl …
1
vote

Link Java textbox to string in external class

Make the "other class" a proper bean that supports PropertyChangeListeners. Then create a PropertyChangeLister which racts on changes in the "other class" and which updates the textarea. So …