Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.java.gui > #2910

Re: Refresh screen by rep

From "Andrew Thompson" <andrew.thompson@THRWHITE.remove-dii-this>
Subject Re: Refresh screen by rep
Message-ID <7d2aaca18437e@uwe> (permalink)
Newsgroups comp.lang.java.gui
References <ff4b308d-f1d1-40ce-9718-76cc884d2232@x29g2000prg.googlegroups.com>
Date 2011-04-27 15:41 +0000
Organization TDS.net

Show all headers | View raw


  To: comp.lang.java.gui
liang.spark@gmail.com wrote:
..
>In my cast.

In your what? 

>class MyFrame extends JFrame{
>  public void paint(Graphics g){
>    g.drawText("some word");
>  }
>}

What is this rubbish?  It does not compile, let alone 
run.  Why would you waste our bandwidth?

>I appreciate to any suggestion!

Post only SSCCEs.  E.G.
<sscce>
import java.awt.*;
import javax.swing.*;

class MyFrame extends JFrame{
MyFrame() {
 super("My Frame");
 getContentPane().add(
 new CustomLabel("Hello World!") );
 setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
 pack();
}

 public static void main(String[] args) {
  MyFrame frame = new MyFrame();
  frame.setVisible(true);
 }
}

class CustomLabel extends JLabel {
 String text;
CustomLabel(String text) {
 this.text = text;
 setPreferredSize( new Dimension(200,50) );
}
 public void paintComponent(Graphics g){
  g.setColor(Color.black);
   g.drawString(text,40,40);
 }
}
</sscce>

-- 
Andrew Thompson
http://www.physci.org/

Message posted via JavaKB.com
http://www.javakb.com/Uwe/Forums.aspx/java-gui/200712/1

---
 * Synchronet * The Whitehouse BBS --- whitehouse.hulds.com --- check it out free usenet!
--- Synchronet 3.15a-Win32 NewsLink 1.92
Time Warp of the Future BBS - telnet://time.synchro.net:24

Back to comp.lang.java.gui | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

Refresh screen by repaint liang.spark@gmail.com.remove-dii-this - 2011-04-27 15:41 +0000
  Re: Refresh screen by rep "Andrew Thompson" <andrew.thompson@THRWHITE.remove-dii-this> - 2011-04-27 15:41 +0000
  Re: Refresh screen by rep "Roedy Green" <roedy.green@THRWHITE.remove-dii-this> - 2011-04-27 15:41 +0000
  Re: Refresh screen by rep "Roedy Green" <roedy.green@THRWHITE.remove-dii-this> - 2011-04-27 15:42 +0000

csiph-web