aspose file tools
The moose likes Beginning Java and the fly likes Using threads and graphics Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Java » Beginning Java
Reply Bookmark "Using threads and graphics" Watch "Using threads and graphics" New topic
Author

Using threads and graphics

Manoj Zachariah
Ranch Hand

Joined: Dec 08, 2003
Posts: 65
this is the first time im using threads. ended up with a problem in the code below. im trying to draw a moving line using the thread



this code gives me an error as below.


thanks
Norm Radder
Ranch Hand

Joined: Aug 10, 2005
Posts: 681
The compiler can't find the method repaint().
Where is it defined in your code?

There is a repaint() method defined in the Component class.
Does your Left class extend Component or any derivatives of it?
It only implements Runnable, so it won't get ANY of Component's methods.

There are some code examples on this forum that will show you how to use paint() and repaint(). Use search. Rewrite your code and come back again later if you have problems.
Good luck.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Using threads and graphics
 
Similar Threads
how can i stop my car crossing the roadsides
Start: applet not initialized
To Thread
Multiple Threads - runnable, join and yield.
what will happen if i run it ?