| Thread | Last Post | Replies |
|
| Is there a GUI Magazine anywhere? | 24 May 2005 12:13 GMT | 1 |
Is anyone aware of a GUI publication of any kind? It surprises me that I've had such a hard time finding such a thing. Is there something else that UI developers use to get articles about licensing fonts and graphics, coding tips like implementing shell
|
| C + Java | 24 May 2005 07:18 GMT | 1 |
I'm a newbie of Java language and I would like to know how I could create a GUI in Java for a console program written in C, 'cause I'd like to write a platform indipendent Graphical application. I found out some helps at
|
| error list best practice? | 23 May 2005 22:42 GMT | 1 |
I'm adding some better error reporting to my application. I want to show the last few errors that have occurred. I'm considering maintaining a Vector or LinkedList of recent errors, then displaying summaries in a JList or JTable. Then a user could double click to get details ...
|
| Glasspane for AWT | 23 May 2005 17:46 GMT | 4 |
How does one enable a component that is using a Glasspane work on applications that use AWT or should i don't bother about awt at all?
|
| Problem during the init() phase in a JApplet using a JTextPane | 23 May 2005 17:07 GMT | 2 |
I wrote a small text editor (using a JTextPane) in order to ease the use of a CMS, in a more WYSIWYG way. Basically, you can see directly the effect of setting the background color, the text color, bold/italic/underlined styles and so on... You can have several applet on
|
| JTree and own TreeModel | 23 May 2005 15:52 GMT | 2 |
I use JTree in combination with my own TreeModel. Whenever a new node is to be inserted I call all listeners to tell them that the structure of the tree has changed but nothing happens! The new nodes don't appear. What am I missing? Removing nodes works perfectly...
|
| Special characters in JFrame titles | 23 May 2005 12:26 GMT | 2 |
Have a problem with these on Win XP. As far as I have learned the problem is native rendering of unicode in window titles. Anyone know of workaround? /Mikael
|
| JProgressBar Flickering! | 23 May 2005 12:23 GMT | 4 |
Hi everyone! I just have a little question here! I have a Swing GUI in which I put a JProgressBar. I also have a static class where I put a static variable JProgressBar. In my main program, because the static methods are time consuming, I
|
| Eclipse VE, JOptionPane | 23 May 2005 10:53 GMT | 2 |
I am using the Eclipse Visual Editor M1. I have the following JMenu: == private JMenuItem getUeberMenuItem() { if (ueberMenuItem == null) {
|
| Detecting resizing of JFrame | 23 May 2005 07:47 GMT | 2 |
How does one detect that a JFrame is being resized? componentResized() of ComponentListener is only called when the mouse is released.
|
| BorderLayout size updating | 22 May 2005 11:27 GMT | 4 |
I have a component at the center of a borderlayout and another component at the south. when i relocate the latter to one of the other four sides, the component resizes appropriately but System.out.println(component) shows that the sizes shown are the
|
| RE:problem( highlight word in the JTextPane)? | 21 May 2005 16:38 GMT | 2 |
I write a piece of code to highlight word in the TextEditorPane,according to http://java.sun.com/docs/books/tutorial/uiswing/components/text.html Here is my code. ...
|
| Q about CardLayout | 21 May 2005 12:16 GMT | 3 |
am learning Swing and am playing with CardLayout. i am controlling the currently displayed 'card' with next/previous buttons. i need to know what the currently displayed 'card' because, depending
|
| Using a cursor variable as a flag | 21 May 2005 02:35 GMT | 1 |
Presently, on mousePressed on a component, I set the Cursor to MOVE_CURSOR. In another unrelated method, I check whether the Cursor is MOVE_CURSOR before processing something. Is it okay to do that way taking into account that other methods might chance the cursor in
|
| Paint not working... | 20 May 2005 16:57 GMT | 3 |
I have an applet with some hand drawn components on. Basically I repaint the canvas that each component is drawn on when the user clicks or presses a key. This works fine, but, not I have been asked to serialize the drawings so
|