| Thread | Last Post | Replies |
|
| Full Screen Graphics in Java | 29 Dec 2003 12:51 GMT | 4 |
Is it possible to put a java application into a full screen graphics mode? I am interested in game programming, but am not sure if java can do it all. Thanks, Steve
|
| How do you do 2 columns, one scrollable? | 29 Dec 2003 10:28 GMT | 2 |
I would like to display 2 columns of many rows. the left column will be fixed in the horizontal and should display all its contents, each cell will be a single JLabel the right column will be scrollable (ie all right-hand cells together) each
|
| Problem with editable JComboBox | 29 Dec 2003 00:23 GMT | 1 |
If I use 2 editable JComboBoxes, the action command when typing in some value in the editable part of the JComboBox for both of the JComboBoxes is "comboBoxEdited": ((JComboBox) actionevent.getSource()).getActionCommand()
|
| Thumbnail view with Swing ? | 28 Dec 2003 11:00 GMT | 3 |
I'm programming a image browser using swing and I'd like to know your opinion about which is the best component to build a thumbnail view of the files (like when you click "thumbnail view" in the windows explorer). A JTable maybe ?
|
| Embedding a JFrame | 26 Dec 2003 21:14 GMT | 2 |
If I have a JFrame (with a JMenuBar, etc.) is there a way I could convert it, somehow, such that it would run in a tab of a JTabbedPane? Could it be (fairly easily) converted to, say, a JPanel? Or am I pretty much stuck having to rewrite the entire thing?
|
| Table cell rendering doesn't work at all ! | 26 Dec 2003 00:41 GMT | 2 |
Since a few days I permanently try to set up a Cell Renderer on my table in order to wrap the text in my cells via TextArea. But I think my Renderer is never invoked !!! The following test shows it:
|
| too slow draw png | 25 Dec 2003 17:30 GMT | 1 |
These too slow, can improve? g.drawImage(new ImageIcon(JGrantt.class.getResource( "image/barLeft.png")).getImage(), 0, 1, 3, 17, null); g.drawImage(new ImageIcon(JGrantt.class.getResource(
|
| Some example code.. | 25 Dec 2003 11:37 GMT | 3 |
Some example code with source, all viewable (and launchable) straight off the net.. http://www.physci.org/launcher.jsp It is mostly simple event and layout
|
| Creating a grid/table in AWT | 25 Dec 2003 04:07 GMT | 1 |
I am looking for a lighweight custom grid in AWT. I cannot use Swing and JTable. We also don't need to edit cells, just show data in tabular format and be able to scroll it vertically. Any responses are greatly appreciated.
|
| GUI countdown timer in a JApplet? | 24 Dec 2003 19:22 GMT | 2 |
What would be the best way to go about creating a countdown timer that shows the user how much time he/she has to accomplish something, then do something (call a method or set a flag) when the time has run out? Imagine an applet with a clock counting down in one corner or another. ...
|
| JTable and selects | 24 Dec 2003 18:00 GMT | 2 |
I'm having problem with selecting rows in my JTable with mouse clicks. I can create my own model and renderers for certain types but I don't know where I can find select operations. What I'd like to do is:
|
| JFormattedTextField & MaskFormatter | 24 Dec 2003 17:58 GMT | 1 |
Is it possible for a MaskFormatter to create a pattern that accepts one or many digits? I know JFormattedTextField is not for matching with RegExp-like patterns. I just want to type any numer of digits and not receive getValue() == null if the number of digits in "###" is smaller ...
|
| image object width and height | 23 Dec 2003 22:46 GMT | 3 |
I am wondering if there's a wiser way to get the image object's width and height, please advise. Here is my idea: new ImageIcon(image_object).getIconWidth();
|
| Creating a bar chart application | 23 Dec 2003 09:11 GMT | 2 |
I want to create a bar chart inside a JPanel for my Java application (which is contained in a JFrame). The bar chart will simply create a bar chart, showing values for 5 fields. These values will not be known before the program is started.
|
| Rendering des CENTER Panels abh?ngig vom ComboBox Item | 23 Dec 2003 08:36 GMT | 1 |
Ich erzeuge mittels Swixml ein einfaches Swing GUI. Ein Frame mit Menue, panel--> BorderLayout.NORTH besitzt eine Combobox, nach deren Inhalten ich das panel-->BorderLayout.CENTER füllen möchte.
|