| Thread | Last Post | Replies |
|
| JProgressBar bar not showing up till complete | 22 Jul 2005 16:32 GMT | 4 |
Hi thanks for reading. Im sure the answer to this is simple, it just eludes me at this point. Im tring to use a progress bar to simply show the progress of 55 files being created and saved to disk. However when I use the JProgressBar
|
| Printing a large square without scaling | 22 Jul 2005 15:22 GMT | 4 |
I wish to print a schematic I have created. It resides on a 2400x2400 panel. Thus, it not only requires a few pages vertically, but also requires a few pages horizontally. how can I make the print routine not only go vertically until a page doens't exist, but also
|
| automatic resize of a JComboBox, based on its content | 22 Jul 2005 09:52 GMT | 1 |
i would like to resize a JComboBox in order to fit its content. The way i thought to use is to get the component of all the item and use getPreferredSize(): public static void redimensionnementAuto(JComboBox combo) { int width = 1, height = 1; JList jList = new ...
|
| Table Mode & Thread | 20 Jul 2005 23:04 GMT | 6 |
I understand all updates to any components state should be executed from with the event-dispatching thread only. What about updates to TableModel and other Model class? If update to Model class should also be handled in thread safe manner
|
| Pictures | 20 Jul 2005 18:40 GMT | 3 |
I am trying to add pictures into a html document and so far everthing has been going well but i have a question. Wen i insert the pictures into the html document they show up and i am able to save them to disk in html format.
|
| Internet Explorer/Firefox, Back or Forward Button. | 20 Jul 2005 14:54 GMT | 16 |
I am trying to make a button that looks like the buttons you see in IE or FF. (The Back and forward buttons). My first try is a JButton with a borderlayout, center i put a label en in the east i've put a jcombobox. (dont know if this is the right thing
|
| ActionListener | 20 Jul 2005 14:05 GMT | 3 |
I have implemented several classes. One for the gui and one for processing the input in a TextField... How can I pass a String from the gui class to the processing class when a certain button is clicked?
|
| Exception occurred during event dispatching | 20 Jul 2005 10:20 GMT | 4 |
I sometimes get the following exception when I bring up my GUI. Line 723 of the code where it originates has the following code. JOptionPane.showMessageDialog(comp, msg, title, err_type); I tried putting a try catch statement around this to catch the
|
| Convert html into rtf ? | 20 Jul 2005 07:55 GMT | 2 |
Does anyone can give me a hint of how converting html into rtf ? Maybe there is an API where I can: String convertHTMLIntoRTF(String HTML) ? Many Thanks
|
| exception in at javax.swing.SwingGraphics.createSwingGraphics | 20 Jul 2005 01:18 GMT | 2 |
I am getting the following exception sometimes in my GUI. How can I debug this? There is nothing from my code in the stack and the exception is not easily reproducible. Any help will be greatly appreciated.
|
| MyPanel extends JPanel is not displayed | 19 Jul 2005 14:16 GMT | 3 |
I want to write a buttonbar which inherits from JPanel. Unfortunately my panel is not displayed. This is how I try: [code]
|
| Subpnel problem | 19 Jul 2005 09:47 GMT | 2 |
I am trying to create a class which could be a subpanel. It extends JPanel and implements AdjustmentListener. The JPanel is used here as a container and it keeps JLabels and JScrorrButtons layouted with gridBagLayout. This class instantiated in application doesn't work, none of ...
|
| there is no point to jtextarea(int rows, int columns) constructor | 19 Jul 2005 04:36 GMT | 13 |
I've found there is no point to the JTextArea constructor that takes row and column values for the size. I've read that the row data member is how many rows of text are visible and linecount is how many actual rows of text are in the text box. Since I'm specifying 4 as the # of ...
|
| Allow only one JInternalFrame to open per Instance | 18 Jul 2005 19:58 GMT | 3 |
I am creating a program where I have differnt JInternalFrame classes and I would only like 1 frame per class to be displayed at a time. Example is having a cardfile frame and a sales frame open at the same time but not be able to create another cardfile frame if one is already
|
| Timed Event in windows file? (batch possibly?) | 18 Jul 2005 17:08 GMT | 1 |
Is it possible to add a timer/timed event in a batch or txt file? for example. I have written a program that sends information to a computerized induction furnace through a rs port. here is what I have in the txt file
|