Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.java.gui > #2910
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!feeder1.hal-mli.net!news.glorb.com!news-out.readnews.com!news-xxxfer.readnews.com!news-out.news.tds.net!newsreading01.news.tds.net!86597e80!not-for-mail |
|---|---|
| From | "Andrew Thompson" <andrew.thompson@THRWHITE.remove-dii-this> |
| Subject | Re: Refresh screen by rep |
| Message-ID | <7d2aaca18437e@uwe> (permalink) |
| X-Comment-To | comp.lang.java.gui |
| Newsgroups | comp.lang.java.gui |
| In-Reply-To | <ff4b308d-f1d1-40ce-9718-76cc884d2232@x29g2000prg.googlegroups.com> |
| References | <ff4b308d-f1d1-40ce-9718-76cc884d2232@x29g2000prg.googlegroups.com> |
| Content-Type | text/plain; charset=IBM437 |
| Content-Transfer-Encoding | 8bit |
| X-Gateway | time.synchro.net [Synchronet 3.15a-Win32 NewsLink 1.92] |
| Lines | 62 |
| Date | Wed, 27 Apr 2011 15:41:50 GMT |
| NNTP-Posting-Host | 96.60.20.240 |
| X-Complaints-To | news@tds.net |
| X-Trace | newsreading01.news.tds.net 1303918910 96.60.20.240 (Wed, 27 Apr 2011 10:41:50 CDT) |
| NNTP-Posting-Date | Wed, 27 Apr 2011 10:41:50 CDT |
| Organization | TDS.net |
| Xref | x330-a1.tempe.blueboxinc.net comp.lang.java.gui:2910 |
Show key headers only | 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 | Next — Previous in thread | Next in thread | Find similar | Unroll 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