Forum: Java Sep 7th, 2007 |
| Replies: 8 Views: 2,147 |
Forum: Java Sep 7th, 2007 |
| Replies: 8 Views: 2,147 Thank you very much Ezzaral. |
Forum: Java Sep 7th, 2007 |
| Replies: 8 Views: 2,147 Well, im hoping to apply that logic to another program (picture), and i think it would be much more efficient if only the cursor were redrawn, and the rest were left alone. As it is right now, each... |
Forum: Java Sep 7th, 2007 |
| Replies: 8 Views: 2,147 So would creating a buffered image and painting the cursor on top of that be like creating a layer on top of an image in Photoshop, and drawing on the new layer?
Thanks. |
Forum: Java Sep 7th, 2007 |
| Replies: 21 Views: 5,287 or just add
throws IOException
underneath your main method declaration.
...
public static void main(String args[])
throws IOException {
String name; |
Forum: Java Sep 7th, 2007 |
| Replies: 8 Views: 2,147 Hi, I'm trying to write a graphing application, that takes an equation and graphs it, and thats no problem. However, I want to add a cursor, which moves along with the mouse. I managed to add one,... |