• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Using threads and graphics

 
Ranch Hand
Posts: 65
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Rancher
Posts: 5008
38
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
reply
    Bookmark Topic Watch Topic
  • New Topic