| Thread | Last Post | Replies |
|
| JMF: controlling webcam color settings from java | 28 Feb 2005 23:24 GMT | 2 |
right now i am working on a webcam realtime image processor - that is motion detection, color recognition, blob tracking etc. i am working with JMF and a logitech usb cam (the one from the LEGO robotics system). for the image analysis i would need a stable picture from the
|
| jTable, sorting and selection | 28 Feb 2005 22:16 GMT | 2 |
i used a JTable component and used the TableSorter class from the sun webpage to sort it ( http://java.sun.com/docs/books/tutorial/uiswing/components/table.html#sorting ).
|
| Java Canvas Object: how to redraw? | 28 Feb 2005 19:51 GMT | 6 |
I have created a small paint program in order to become more familiar with Java. I am using the Canvas object to draw on, but whenever the window is covered, I loose my work. How do I preserve this information for repainting. I've tried getting
|
| MediaPlayerBean repaint problem | 28 Feb 2005 17:28 GMT | 1 |
I'm having a bit of trouble with Java Media Framework's MediaPlayer Bean. I'm making an application that has a MediaPlayer set in a JTabbedPane. The problem is, once I've called setMediaTime() on the Player, I can't get it to repaint its visual component. In other words, changing ...
|
| JTextField with oversize text displays end portion of text | 28 Feb 2005 16:39 GMT | 2 |
I am working with a JTextField which contains a string of text that is too long to be displayed completely. When the JTextField loses focus, the end portion of the text is displayed. I would like to have the beginning of the text displayed when losing focus.
|
| Flickering as paint continually recalled due to setFont call | 28 Feb 2005 09:38 GMT | 1 |
The Windows implementation of the Java virtual machine is causing my application to flicker and continually repaint the screen. From elimination, I found
|
| Changing javaLogo icon into my pictures? | 27 Feb 2005 04:58 GMT | 1 |
I tried to cnage the icon image of my JFrame on a next way: Image myPicture; myPicture = Toolkit.getDefaultToolkit().getImage("pictures/myLogo.jpg"); myFrame.setIconImage(myPicture);
|
| Moving through the components with the Enter? | 27 Feb 2005 04:58 GMT | 2 |
I have a few components in a JFrame: JTextField, JTree, JTable. What listener and how I must create it in a JFrame, to get focus on a next component, with my order list? Enter(or tab) will be a suitable key.
|
| Hyperlink inJtable cells | 25 Feb 2005 18:49 GMT | 7 |
I would like to render text inside JTable column cells as Hyperlinks (so the hand-cursor appears when the mouse hovers over the cells, and a single click event on the link can be trapped. I tried using JEditorPane as the cellrenderer for the JTable column
|
| JInternalFrame iconified frames repositioning after a JFrame resize | 25 Feb 2005 12:40 GMT | 2 |
I "used" to know this years ago as I had to do it. I know it was not much code. If I have a JFrame with it's root content pane being a JDesktopPane "and" I have some iconified JInternalFrames sitting comfortably hugging the bottom
|
| RTFEditorKit vs. clipboard: formats | 25 Feb 2005 08:17 GMT | 1 |
I'm using an RTFEditorKit in a JTextPane. I'd like to copy the RTF text from the text pane to the (Windows) clipboard, but calling JTextPane's copy() method only copies plain text. If I use an HTMLEditorKit, the same call gives me HTML on the clipboard, so I think
|
| JCheckBox problem Please help | 25 Feb 2005 04:45 GMT | 2 |
Hi All My question is how to remove the border from inner rectangle of a JCheckBox. A JCheckBox has 2 rectangles,it is possible to remove the boder from the
|
| catching events on tooltips | 24 Feb 2005 22:52 GMT | 1 |
I want to implement dynamic interactive tooltips in java so that the user can expand / collapse them. Also, if there are hyperlinks in the tooltip text, the user should be able to follow up this link. For the same purpose, I need to be able to catch any events associated with
|
| GridBagLayout ? | 24 Feb 2005 20:19 GMT | 10 |
I hope some can help me to give the last lesson in learning GridBagLayout. Because I'm stuck... Below, I have my stucking example. What I need is a top panel with two title panels inside like the example.
|
| Movie with JFrame | 24 Feb 2005 20:19 GMT | 1 |
I build an application that use JFrame class that include a panel, that include an image. I want create a simple animation changed the image in the panel. Working with JFrame, I have see the window is visible only after the
|