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
Rep Power: 0
Ed is on a distinguished road
Default 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
  #2 (permalink)  
Old 06-05-2007, 07:31 PM
bbq bbq is offline
Senior Member
 
Join Date: Jun 2007
Posts: 134
Rep Power: 0
bbq is on a distinguished road
Default
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
Rep Power: 0
Peter is on a distinguished road
Default
mm you are doing a bad use of the hierarchy methods of the applet class
check it
Bookmark Post in Technorati
Reply With Quote
Reply

Bookmarks

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

BB 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 +2. The time now is 11:57 AM.



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