| Thread | Last Post | Replies |
|
| Eclipse and Tomcat questions | 07 Jun 2006 21:36 GMT | 3 |
Lastnight I setup Eclipse to work with Tomcat, which works very good, but there are something I don't understand. 1. My files are put in my workspace in (C:\Documents and Settings\...etc) How does Tomcat (which is installed in C:\Tomcat) know that it should get
|
| MouseListener | 07 Jun 2006 19:00 GMT | 5 |
I implemented mouse listener in this classes below but when I put my mouse over this button, it doesn't work. Help! public class MouseListenerImpl implements MouseListener {
|
| form survives and reappears after dispose??? | 07 Jun 2006 17:45 GMT | 2 |
I have a form with an 'add' button which creates a new dialog with a panel to add new data and an ok or cancel which both call dispose(); The code is something *similar* to the example below. The wierd part is when I click on the cmdAdd button again - it does not
|
| ListSelectionListener valueChanged fired twice | 07 Jun 2006 16:43 GMT | 3 |
public void valueChanged(ListSelectionEvent event) { if(!event.getValueIsAdjusting()) { System.err.println("INSIDE THE METHOD............."); ListSelectionModel lsm = (ListSelectionModel) event.getSource();
|
| BandCombineOp usage... | 07 Jun 2006 15:11 GMT | 1 |
Can someone give a few usage scenarios of this operation? Is it possible to use this operation for example anywhere in such a scenario... Given an input image in gray scale format, convolve operation is used
|
| Two JTable questions | 07 Jun 2006 12:51 GMT | 2 |
Well I'm writing a database program that is supposed to store contents of a warehouse (well small warehouse, really small warehouse). And to have a user-friendly GUI. And I thought that displaying entire contents of database (backed by a
|
| JTextArea.setLineWrap(true); not working properly with JSplitPane ?? | 07 Jun 2006 12:13 GMT | 3 |
I have a very strange behavior ... Placing a JTextArea which is set to: setLineWrap(true); in a JPanel and the JPanel in a JSplitPane causes the JSplitPane to get stuck (it can't be moved ...).
|
| How to recognize item (pre-)selection in popup part of JComboBox? | 06 Jun 2006 20:13 GMT | 5 |
I'm trying to show a text message in my window when an item in the popup-portion of a Java 5 JComboBox is (pre-)selected (i.e. the item has not yet been clicked or applied as selected value, but the mouse cursor is hovering above it, so the item has the selected background
|
| New to java | 06 Jun 2006 16:55 GMT | 1 |
Hii. to all of u peaple , well gues i m new to java and wanto lean java as my life necssety of my life so please help me out.
|
| AbstractTableModel - delete not updating rows properly | 06 Jun 2006 12:34 GMT | 5 |
I've extended the AbstractTableModel class. The sub-class holds an ArrayList of items which are used for getting the values of cells. So I have re-implemented getValueAt and setValueAt, I also have deleteRow and addRow to handle adding whol new rows. I call
|
| JSplitPane divider | 05 Jun 2006 16:48 GMT | 1 |
I'am quite new to Swing programming so please be patient:) I have 2 panes inside JSplitPane, divided by vertical divider :) I would like to 1) Write vertical text on divider
|
| JCheckBox check on the right | 05 Jun 2006 16:40 GMT | 3 |
Did anyone try to put check of JCheckBox on the right without overriding UI? I tried setComponentOrientation(RIGHT_TO_LEFT) - it works, but leaves a gap on the left.
|
| Controlling which undo are "significant" when using HTML editor kit etc. | 05 Jun 2006 00:55 GMT | 1 |
Assuming I have an HTMLDocument and associated HTMLEditorKit, and I want to update a portion of the underlying HTML, I've found that the only way that gives me sufficient control is to do the following: doc.remove(0, doc.getLength());
|
| JPopupMenu loses focus | 04 Jun 2006 12:07 GMT | 1 |
I have a strange problem involving multiple JPopupMenus. I have a JPanel from which I open a JPopupMenu. From this menu I open another JPopupMenu. The problem is for any mouseClicked event anywhere on the 2nd popup menu, the menu loses focus and disappears behind the
|
| Frame without border or black border and titlebar | 04 Jun 2006 10:45 GMT | 1 |
I use in my program Look and Feel "Substance" (https://substance.dev.java.net/) (currently appearance: http://www2.fht-esslingen.de/~mimiit00/lnf/currently.gif ). I don't want to have a border of standart JFrame in WINDOWS XP (target
|