| Thread | Last Post | Replies |
|
| Filling a bitmap image with java 1.3.1 | 09 Dec 2003 08:38 GMT | 3 |
I need to fill parts of a bitmap, representing European country's electional cantons, with different colors, one per canton. I would like to know what would be the best way to do it on a pure java awt environment.
|
| controlling a java app with a bot | 09 Dec 2003 02:10 GMT | 2 |
I want to automate play game (java applet) running under linux (X11). The game applet contains a text box that scrolls information (from a network server) that I need my bot to be able to read. I would like to simulate mouse actions to click on certain buttons in the applet
|
| Frame/JFrame screen capture from Java | 09 Dec 2003 01:50 GMT | 2 |
Java GUI components can be dumped to standard image file using code exampled below. However, the outermost frame, including title header, of Frame or JFrame can't be captured through this method because they aren't rendered by Java but the native windowing system. I'd like to
|
| Accessing the screen pixels fra a Java program | 09 Dec 2003 00:03 GMT | 2 |
How can i access the screen pixels from within a Java program? I want to locate small images on the screen drawn by another process (shockwave player in IE). In order to do that I need access to the pixels on the screen.
|
| combobox | 08 Dec 2003 20:49 GMT | 1 |
I have to make a java-program for my exam in school. In my program I'm using an OptionPane with a combobox in it. The user can choose from the list shown in the combobox and then press ok. But I'm not totally happy with that... I would like that the user of the
|
| How to print JTree? | 08 Dec 2003 19:32 GMT | 1 |
How to print JTree with all nodes opened?
|
| A quick questions concerning Radiobuttons | 08 Dec 2003 04:30 GMT | 1 |
I have two JRadioButtons grouped, so only one of them can be selected. How do I setup so the selected JRadioButton can not be selected again? Regards Martin
|
| Timers | 07 Dec 2003 17:39 GMT | 1 |
Having a few problems restarting a timer. Currently using 2 timers, both begin like: javax.swing.Timer t = new javax.swing.Timer(30000, new ActionListener() { and
|
| JViewPorts Client not refreshed | 07 Dec 2003 17:14 GMT | 1 |
I please for some help in following problem... Starting point: JScrollPane scrollPane = new JScrollPane(); scrollPane.setPreferredSize(new Dimension(500,450));
|
| Help With Calculator Program! | 07 Dec 2003 16:27 GMT | 1 |
I'm trying to make this calculator program work as an applet AND as an application. I tried using: public class calcg extends JApplet implements ActionListener{ in many different ways, but it didn't work. Can sombody help me make
|
| ArrayList help | 07 Dec 2003 00:30 GMT | 1 |
Currently using: ArrayList alist = new ArrayList(); String str = Integer.toString(location); alist.add(str);
|
| BorderLayout.CENTER: get size? | 06 Dec 2003 22:23 GMT | 8 |
I created an interface with BorderLayout.CENTER and used g.drawString to put info in it. However, on different computers, different OS'es, the interface itself is ok (using getScreenSize), but the filling of CENTER is screwed up. Is there any way to measure the size of CENTER ...
|
| Handling a xpm file | 06 Dec 2003 20:46 GMT | 2 |
I am beginning with java and I need to handle a xpm format file in order to put that file pixel by pixel in a frame using only awt lib. How could I do that?? How can i handle any graphic file?
|
| Image in a component | 06 Dec 2003 12:23 GMT | 4 |
I want to draw a personnalised JComponent (let's name it GridCell for instance) which would contain a small Icon. The display method (paint() ?) would paint an icon given its internal parameter.
|
| Updating the UI | 06 Dec 2003 12:12 GMT | 5 |
I would like to create a periodic thread that updates my UI. The following is a minimum example of my system: File #1 contains the main method, and update method: ----------------------------------------------------------------------------
|