Java Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me

The Shed is going Social! Join us on FaceBook and Twitter and chime in on the conversation.

Go Back   Dev Shed ForumsProgramming LanguagesJava Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
  #1  
Old February 20th, 2013, 05:42 PM
nemesis15 nemesis15 is offline
Registered User
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Feb 2013
Posts: 1 nemesis15 User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 7 m 51 sec
Reputation Power: 0
Why can I not see the shape?

Hi there,
I'm working on a project that is supposed to show a moving rectangular. I am a beginner in Java and we have just learnt about GUI. My problem is that after I run the program on Eclipse, nothing appears on screen. I'm using Macbook pro. I don't have this problem when I use windows. Therefore, it should be something related to Mac. If there's a programmer here who uses Mac instead of windows, would you please help me with this issue?
Here is my code:


import java.awt.*;
import javax.swing.*;

class PaintingFrame extends JFrame
{
public PaintingFrame()
{
super();
setSize(600, 400);
setVisible(true);
}
public void paint(Graphics g)
{
super.paint(g);
int x = 100; int y = 100;
int w = 100; int h = 100;
Color bg = this.getBackground();
Color fg = Color.RED;
while (true)
{
try {
g.setColor(fg);
g.fillRect(x, y, w, h);
Thread.sleep(20);
g.setColor(bg);
g.fillRect(x, y, w, h);
x = x + 3;
} catch (InterruptedException e)
{ }
}
}
}

public class GraphicsDemo {
public static void main(String[] args) {
PaintingFrame pf = new PaintingFrame();
}
}

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesJava Help > Why can I not see the shape?

Developer Shed Advertisers and Affiliates



Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 


Powered by: vBulletin Version 3.0.5
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.

© 2003-2013 by Developer Shed. All rights reserved. DS Cluster - Follow our Sitemap