| Thread | Last Post | Replies |
|
| bundling swt libraries into your JAR executable | 22 Aug 2006 07:56 GMT | 3 |
My customer cant download the swt libraries... so I am at this point limited to using the swing libraries already included in the JRE. Unless there is some way that I can include the swt libraries into my jar file. My question is:
|
| Selecting a tree node in JTree | 21 Aug 2006 21:51 GMT | 2 |
I am using the following code to select a node in JTree, given the node object itself: ******************************************* JTree xmlTree = new JTree();
|
| Using older java version than required - is it possible? | 21 Aug 2006 19:46 GMT | 3 |
I have a java application where java version 1.4.2_07 is required. The problem is that on client pc there is only java version 1.4.2_06 and it is not possible to install the newer one.
|
| How to connect Jdbc and java | 21 Aug 2006 11:20 GMT | 5 |
Hi,i am doing project in java and using database in that but the problem is that database is not connecting with java.It is giving an Exception :java.lang.ClassNotFountException:com.mysql.jdbc.Driver . I have added the path of connector .jar file in classpath but it is still
|
| unexpected behaviour in simple frame | 19 Aug 2006 01:18 GMT | 4 |
Hi, I haven't touched Java in a few months and I haven't touched swing in a couple of years, and I was wondering if anyone could point out where the behaviour I want can be found. I have a frame, with a menubar. I paint a panel on the rest of the
|
| AWT keyboard event without GUI? | 18 Aug 2006 14:01 GMT | 1 |
I am trying to write an application that will run on console and will not have any GUI whatsoever. Once the program in run i want it to keep listening for keyboard event and just print them on console as they happen.
|
| problems adding to and changing data in a jtable | 18 Aug 2006 05:52 GMT | 2 |
I have a Jtable that I'm trying to setup so that a user can enter data into a jtextfield, click an Add button and have the data added to a jtable, as well as be able to select an existing entry to edit or remove it by clicking an edit or a remove button. I only have 1 column of ...
|
| How to download data displayed in the JTable as a .CSV file | 17 Aug 2006 23:10 GMT | 1 |
I have a JTable which displayes some set of data from a database. Now the requirement is on a button click i wanted to save the data displayed in Jtable into a .csv file. how can i do that? any help is appriciated
|
| Redraw in wron place after AffineTransform | 17 Aug 2006 18:51 GMT | 2 |
I have a JApplet from which I create a JPanel. In the .paintComponent method of the JPanel I draw text using Graphics.drawString(). If I set an AffineTransform before drawing the text, the text is drawn
|
| No column headers when extending AbstractTableModel | 17 Aug 2006 17:12 GMT | 1 |
I am trying to get used to extending AbstractTableModel for my tables rather than extending DefaultTableModel. However, when using AbstractTableModel, I cannot seem to get column headers. Can anyone explain this - the code is below (only one class);
|
| JComboBox freezes gui | 17 Aug 2006 16:48 GMT | 3 |
I'm writing an application that uses swing, but I've a really weird problem. In this app I use JLabels, JButtons, menus, textbox and JComboBox, everything works fine but not JComboBox. When user clicks on JComboBox the entire gui freezes and don't response anymore, I tried to
|
| Browsing files in applet | 17 Aug 2006 00:55 GMT | 7 |
I'm writing an applet in which I would like to have a possibility to browse files on my hdd. Below is some short code example: import java.awt.*; import java.applet.*;
|
| jtabbed pane using different size jpanels for each tab | 16 Aug 2006 09:04 GMT | 15 |
I have a jtabbedPane in a dialog window and the first tab has a lot more textfields on it than other tabs so basically the size of the dialog is going to be packed to fit that tab (or so that's the impression I get). The problem is that the textfields on the 2nd tab have a bunch ...
|
| jscrollpane scrollbar location | 16 Aug 2006 07:05 GMT | 4 |
By default a scrollbar for jscrollpane shows up "outside" of the actual text area so when I specify a jtextarea to put into the scrollpane that has the same number of columns as a regular jtextfield I end up with the scrollbar of the scrollpane sticking out further on the right ...
|
| Accessing another window's components | 15 Aug 2006 17:48 GMT | 2 |
I have an application window that pops up a child window. That child window wants to call methods in the application window that called it. What's the appropriate way to do this within the Java Netbeans 5.0 IDE? Thanks!
|