| Thread | Last Post | Replies |
|
| JTextPane Paste | 28 Apr 2005 10:47 GMT | 1 |
I am just wondering... Why is that for security reasons, one cannot do Ctrl+V to paste into JTextPane? People argue that you cannot read user's cb. But i don't need to read
|
| How to make a floating JToolBar resizeable? | 28 Apr 2005 07:40 GMT | 4 |
I want to make panels from my application to be detachable from the main application window. This can be done, if I use JToolBar instances and place the desired JPanels inside these toolbars. This works fine, but: 1. I do not know how to put the names in the title bars of created
|
| Hide Maximize Button of JFrame And Problems! | 28 Apr 2005 03:27 GMT | 2 |
Hi Every body! When i design JFrame. I want to hide maximize button but i can not find out one solution. My Problem is create form similar to dialog but i can not use Jdialog
|
| Modal and non modal in same app | 27 Apr 2005 16:11 GMT | 1 |
Hi Group, I have an application that pops up JFrames when certain events occur. The application also has a modal dialog. Diagram:
|
| using JOptionPane's error icon | 27 Apr 2005 14:09 GMT | 5 |
I'm writing my own error msg dialog and want to use the JOptionPane's error icon. Pls help
|
| How to scroll to a cell in a JTable | 27 Apr 2005 14:04 GMT | 1 |
I have a JTable embedded in a JScrollPane. Through code, I want to select a specific cell in the table and make sure it scrolls into view. Here is my code (note: my JTable only has one row, but a large number of
|
| Table cell renderer problem - paint problem? | 26 Apr 2005 20:30 GMT | 4 |
I have a table which uses a custom TableCellRender. In the code below, TColumn stores some configuration information about a given column. if it's renderComponentType member is not equal to "LABEL", it will return a custom component i created.
|
| Toggle Button for AWT | 26 Apr 2005 15:26 GMT | 1 |
I was wondering is there is a quick way to make a Button work like a toggle button in AWT (I Cannot use swing). I was looking at maybe frigging the normal Button to stay depressed when clicked, then when clicked again show un-depressed..
|
| Styled Document and icons | 26 Apr 2005 10:48 GMT | 2 |
Some problems with StyledDocument and icons: why subsequent calls to insertIcon() with the same icon works improperly? example: ImageIcon icon1 = new ImageIcon("a.gif");
|
| Calling method question. | 25 Apr 2005 20:33 GMT | 3 |
I have a GUI list which contains a list of string references to java test scripts in a seperate package. Also a button to extract the selected script and run it. However, I cannot figure out how to make it run. testHarness.testScripts.TestA.runTest(); //works OK
|
| How to add rows of text to JTextArea | 25 Apr 2005 19:08 GMT | 5 |
Is a way to add text to a JTextArea as rows? For instance : row1 row2
|
| Application Storybook Builder - any recommendation? | 24 Apr 2005 21:26 GMT | 1 |
Are there any tools you have used (would recommend) to develop an application's GUI storybook with? I am working on a new development and would like to quickly develop a GUI storybook model as part of the specification. I would be very interrested in an open source tool - if one
|
| left justify icon in JTable cell | 24 Apr 2005 19:55 GMT | 1 |
i'm not well versed in swing as yet and have a question related to custome cell renderers. I have a custom cell renerer that adds and icon to in cell based on a condition. If the condition is met, the cell would contain both text
|
| Cursor in an uneditable textpane? (or getting chars as they are typed) | 24 Apr 2005 19:53 GMT | 2 |
Hi, I have an application that's lets the user type text into a JTextPane. I transmit this text char by char as it is typed (requirement for the application) over the network. This means that I can not let the user
|
| How to check if a String input is integer, float or NAN | 24 Apr 2005 17:23 GMT | 3 |
I tried to do get so far with my code by using isDigit() method but don't know how to use it for float. This is my code. Also i am not exposed to exceptions at all. So is there a method that i could use without using exceptions. The following code works fine if i type ...
|