Java Forums

Main Menu
Home
Today's Posts
FAQ
Search
Contact Us

Java Network
Java Tips
Java Tips Blog

Sponsored Links





Welcome to the Java Forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community, you will:

  • have access to post topics
  • communicate privately with other members (PM)
  • not see advertisements between posts
  • have the possibility to earn one of our surprises if you are an active member
  • access many other special features that will be introduced later.

Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact us.

Reply
 
LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 06-05-2007, 05:28 PM
Ed Ed is offline
Senior Member
 
Join Date: Jun 2007
Posts: 110
Ed is on a distinguished road
Applet problem
Why my applet doesn't work?
Can you help me?
Code:
package src.com.test; import java.awt.*; import javax.swing.*; import java.applet.*; public class TableTest extends Applet { private static final long serialVersionUID = 1L; JTable myTable; JButton myButton; JPanel myPanel; JMenu myMenu; public TablaTest(){ myPanel=new JPanel(); myMenu=new JMenu(); myTable=new JTable(); myButton=new JButton("Query"); } public void init(){ myPanel.setLayout(null); myPanel.setBackground(Color.BLUE ); myPanel.add(myButton); myPanel.setSize(200,200); myPanel.setVisible(true); } public static void main(String[] args) { TableTest T=new TableTest(); T.init(); } }
thank you
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 06-05-2007, 07:31 PM
bbq bbq is offline
Senior Member
 
Join Date: Jun 2007
Posts: 134
bbq is on a distinguished road
It doesn't work because in Applet component you have to add a Frame or some container to visualized it in standalone application or create a html to tests it in your browser

Also you are joining swing and awt components, and that is wrong
Bookmark Post in Technorati
Reply With Quote
  #3 (permalink)  
Old 07-02-2007, 04:35 PM
Senior Member
 
Join Date: Jun 2007
Posts: 119
Peter is on a distinguished road
mm you are doing a bad use of the hierarchy methods of the applet class
check it
Bookmark Post in Technorati
Reply With Quote
Sponsored Links
Reply


Thread Tools
Display Modes

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
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Serious applet problem willemjav Java Applets 1 03-25-2008 06:01 PM
IMPORTANT: Applet Problem Please Help! nvidia Java Applets 1 01-22-2008 03:25 AM
applet problem plz HELP shibajisanyal Java Applets 1 01-09-2008 02:47 AM
Problem Exporting a Jar as an Applet Hank Ag99 Eclipse 0 12-22-2007 10:22 PM
Problem with run Java Applet Albert Java Applets 1 07-13-2007 04:06 PM


All times are GMT +3. The time now is 07:34 PM.


VBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO ©2007, Crawlability, Inc.
Copyright ©2006 - 2007, www.java-forums.org