| Author |
Simple Swing
|
abalfazl hossein
Ranch Hand
Joined: Sep 06, 2007
Posts: 602
|
|
This code does not show any thing, Why?
|
 |
Ernest Friedman-Hill
author and iconoclast
Marshal
Joined: Jul 08, 2003
Posts: 24081
|
|
|
Depends what you did with it. Did you create an appropriate HTML file naming this class in an applet tag, and open the HTML in a browser or the appletviewer application?
|
[Jess in Action][AskingGoodQuestions]
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12950
|
|
That's a Swing applet. How are you running that code, is it packaged properly, do you have a HTML web page with an applet tag, etc.? See Oracle's applet tutorial.
You should build the GUI in the Swing event dispatch thread, for example using SwingUtilities.invokeAndWait, as shown in this example.
Also, you do not need to call setVisible(true) for an applet.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: Simple Swing
|
|
|