Results 1 to 1 of 1
Thread: adding thread
- 07-05-2008, 04:33 PM #1
Member
- Join Date
- May 2008
- Posts
- 24
- Rep Power
- 0
adding thread
i sincerely apologize for asking this question again and again but i control it i am stuck by this program for past 3 days this time i am sending the .gif file so that u can easily understand what my idea is
here is the code
Java Code:import java.util.*; import java.awt.*; import javax.swing.*; class load extends JFrame { Image r; Image b; int y=329; int floor=329; int x=3; load() { super("some name"); r=new ImageIcon("red.png").getImage(); b=new ImageIcon("blue.png").getImage(); getContentPane().add(new display()); setVisible(true); setSize(175,400); setResizable(false); } class display extends JPanel //implements Runnable { //Thread t=new Thread(this); display() { repaint(); } public void paintComponent(Graphics q) { Graphics2D n=(Graphics2D)q; q.drawImage(r,x,y,this); } /* i just want to place the red image fixed at the bottom and start new blue image thread i,e try { y=0; while(y!=floor) { y++; q.drawImage(b,x,y,this); Thread.sleep(10); } } catch(Exception e) { } */ } } class f { public static void main(String args[]) { new load(); } }
Similar Threads
-
adding thread
By amith in forum Java 2DReplies: 0Last Post: 07-05-2008, 04:31 PM -
data from the main/GUI thread to another runnin thread...
By cornercuttin in forum Threads and SynchronizationReplies: 2Last Post: 04-23-2008, 10:30 PM -
If JNI thread call the java object in another thread, it will crash.
By skaterxu in forum Advanced JavaReplies: 0Last Post: 01-28-2008, 07:02 AM -
Adding a Restock Fee
By Nexcompac in forum New To JavaReplies: 2Last Post: 07-31-2007, 02:46 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks