| Thread | Last Post | Replies |
|
| Unicode - UGLY GUI | 29 Aug 2005 08:20 GMT | 7 |
I m working on a GUI app. which uses Indian langage input methods, in short it makes use of Unicode. I run the app with the following command line java -Dfile.encoding="UTF-8" package.myClass
|
| Dialogs always on the top | 29 Aug 2005 05:05 GMT | 4 |
The dialogs created with JOptionPane are modal dialogs and each showXxxDialog method of JOptionPane blocks the current thread until the user's interaction is complete. But how to make them to be always on top of the owner?
|
| JTextPane woes... | 28 Aug 2005 18:11 GMT | 2 |
I need to switch from JTextArea to JTextPane b/c need to change font color according to user input, but am running into all sorts of problems.. you can't specify a size in rows and columns like you can in JTextArea, setSize() is being ignored.. also why no append() method in ...
|
| JTexPane: Cross-platform chaos | 28 Aug 2005 17:40 GMT | 6 |
I've extended a JTextPane to preserve tabindex and implement block- indentation. It is supposed to work much like a code editor. Check out the resulting applet, rigged up for Firefox only, over at: <url:http://www.wunderbyte.com/editorapplet>
|
| Different height at JComboBox editor and renderer | 28 Aug 2005 13:55 GMT | 1 |
I want to use JComboBox to enabe user to select from a list of images. I also want that after the selection is made, only the name associated to the image is shown at JComboBox text field part(next to the button, or the button itself if the combo box is uneditable).
|
| setting size of elements | 28 Aug 2005 13:47 GMT | 7 |
setSiz() is ignored... JButton btn = new JButton("OK"); public void init() { getContentPane().add(btn);
|
| splitPane.addComponentListener | 28 Aug 2005 11:37 GMT | 1 |
splitPane.addComponentListener(new ComponentAdapter() { public void componentShown(ComponentEvent evt) { System.out.println("This won't get printed"); }
|
| JTextPane: Workaround for invisible text with hanging indents? | 28 Aug 2005 11:37 GMT | 3 |
I have a hanging indent requirement for paragraph formatting: <http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/text/StyleConstants.html#Fir stLineIndent> "The amount of space to indent the first line of the paragraph. This value may be negative to offset in the reverse direction. ...
|
| GUI Prototype erstellen | 27 Aug 2005 09:32 GMT | 1 |
ich suche ein Tool mit dem ich eine Benutzeroberfläche zusammenstellen kann, ohne dabei Ahnung von Java haben zu müssen. Es geht nur darum eine funktionslose GUI zu erstellen. Kennt jemand von euch ein Tool, mit dem das einfach möglich ist ohne gleich
|
| Timer event appears to move window | 27 Aug 2005 00:12 GMT | 8 |
Hi Im new to Swing (and a lot other Java things to be honest) s would be grateful for any assistance. Im writing an app that is MDI based Ive got an JFrame MDI into which I have a menu bar and menu items etc and a status bar (a JPanel attached to SOUTH)
|
| getting rid of text in TextArea | 26 Aug 2005 20:51 GMT | 3 |
how do you dynamically get rid of text in a TextArea? (no way of doing what in JS you would do like this textArea.value = ""; ??? thank you..
|
| jtree hashtable | 26 Aug 2005 08:15 GMT | 1 |
Do you know if it is possible to get the value of a hash back from a JTree? ex: hash {
|
| processMouseEvent() | 25 Aug 2005 21:29 GMT | 1 |
MouseDown() and MouseUp() are deprecated; both have been replaced by processMouseEvent()... how can this be? (two diff. methods replaced by same method..) http://java.sun.com/j2se/1.5.0/docs/api/java/awt/Component.html#mouseDown(java.a wt.Event,%20int,%20int)
|
| repainting when logging in | 25 Aug 2005 21:24 GMT | 4 |
I am a newbie to GUI programming and I was hoping someone could help me. I have a JFrame app that does not repaint when I log out (and then in) of my Windows machine until I minimize and restore the GUI. Is there a
|
| SWT not meant for x-platform distribution/WebStart?? | 25 Aug 2005 15:18 GMT | 1 |
Is SWT (from Eclipse) not meant for cross-platform app distribution and JavaWebStart? I noticed when packing my application in a .jar file and trying to run it, I got a link error requesting swt-win32-3138 (apparently some DLL).
|