| Thread | Last Post | Replies |
|
| WYSIWYG problems: sun.java2d.SunGraphics2D verses sun.awt.windows.WPathGraphics | 23 Dec 2003 07:05 GMT | 1 |
I am running into some differences in string metrics for certain TrueType fonts on my XP box with a sun.java2d.SunGraphics2D object verses a sun.awt.windows.WPathGraphics (i.e., my actual printer) object. All I'm trying to do is to right justify some text, and when I compute the x
|
| Have a look at my TreeTable implementation | 23 Dec 2003 01:26 GMT | 3 |
I needed to use a TreeTable for the program I was writing and it struck me how very little information there is about this subject. Ok, there are a few examples on SUN's website, but they are needlessly complex. So I decided to make a generic implementation along with a couple of ...
|
| JTree & database: ID column ? | 23 Dec 2003 00:29 GMT | 1 |
Idevelop the JTree which create,update and delete nodes from database and for it I use ID1 column which is unique and ID2 which is pointer on the parent node. My ID1 is look like this:
|
| GUI Builder | 22 Dec 2003 15:46 GMT | 4 |
Is there an app available to build a Java GUI by drag and drop?
|
| Access an object by its name as string | 22 Dec 2003 12:26 GMT | 3 |
I have some JTextField objects, called jtf0, jtf1, jtf2, and so on. How I can access their properties by their names known as string? For instance: for(int i=0; i<10; i++) {
|
| Work/paint/thread mixing | 22 Dec 2003 07:42 GMT | 2 |
I'm developping an applet which upload a file on a ftp server. On the applet i have one "Go" button. And when the user click on it, it starts the upload. For painting/refreshing/drawing problem, i create a thread for the upload.
|
| Failure to repaint | 21 Dec 2003 23:59 GMT | 2 |
I have a Swing Applet wherein I create NO new threads. There are no time-consumptive things occuring. I create an Applet which has a couple of JTables on it. The data therein is NOT very extensive.
|
| Setting Border in TableHeader Cells | 21 Dec 2003 19:05 GMT | 1 |
I'm trying to align the names in my TableHeader to the left. This works: DefaultTableCellRenderer renderer = (DefaultTableCellRenderer) table.getTableHeader().getDefaultRenderer();
|
| newby, which java 4 linux to use? | 21 Dec 2003 17:43 GMT | 2 |
I've recently installed linux (mandrake) on my computer and noticed that the java package which comes with it isn't the one that sun offer. its kaffe. I plan on removing this package and installing sun's. I just wanted to
|
| Setting text on JMenuItem | 20 Dec 2003 22:12 GMT | 4 |
When setting a new menu item text while the program is running, nothing happens visually. Does anyone know why and how to fix it? TIA, Karsten
|
| [ANN] SwingSet 0.6.0-beta now available | 20 Dec 2003 13:10 GMT | 2 |
New Roads, LA - December 19, 2003 - We are pleased to announce the 0.6.0-beta release of SwingSet, an open source Java toolkit that allows the standard Java Swing components to be made database-aware. The latest release includes utilities for developing data grids, so that
|
| paintComponents() | 20 Dec 2003 10:01 GMT | 1 |
If I have an Applet, and say another window is over the display of the Applet, when I remove the other window, such that the Applet should repaint, and it only repaints partially (unless I do some mouse action over a component on the Applet, whereupon that component then repaints), ...
|
| Outlookstyle Side Bar | 20 Dec 2003 04:24 GMT | 11 |
I search for an application an component like the Outlook bar. I found that there was an article inside the JDJ in 1998. http://sys-con.com/magazine/?issueid=329&src=false The Component is exactly that I need.
|
| Immutable text area idiom? | 20 Dec 2003 04:19 GMT | 28 |
I have a custom component I'm assembling that I want to be able to be used for two purposes: reading and editing a particular object. When the component is in read-only mode, I'd like to update the widgets as necessary to look read-only. I'm not sure of the best way to do this.
|
| Newbie: Should I learn the AWT? | 20 Dec 2003 01:52 GMT | 5 |
I am starting to learn Java again, after a few unsuccessful attempts (lack of OO thinking) after a few years on embedded C/C++. I saw that now the guis are built using Swing (that kind of builds on top of the AWT) - I was wondering if it is still worthy these days to learn the
|