aspose file tools
The moose likes Swing / AWT / SWT and the fly likes Simple Swing Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Swing / AWT / SWT
Reply Bookmark "Simple Swing" Watch "Simple Swing" New topic
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
    
  15

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
    
    3

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
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Simple Swing
 
Similar Threads
How to Maximize and minimize JButton on Mouse over
Tryin to do Jbutton disappear.
Painting components over images
in flow lay out how can i force to add component on next line?
Java Newbie needs guidance