This page contains an archived post to the Java Answers Forum made prior to February 25, 2002.
If you wish to participate in discussions, please visit the new
Artima Forums.
Message:
it should work fine !
Posted by swapnil on November 27, 2000 at 7:40 AM
d/shailesh, i am surprised why ur program is not working fine! pl. try this example. ............................................................... import java.applet.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; /*
*/ public class test extends JApplet { public void init() { show(); System.out.println("hello1"); } } ..............................................................
change the hello1 to hello and recompile and run in appletviewer . u shall get the changes in the new applet, i am getting it. if this doesn't solve ur problem , write down the complete code u are working on. regards, swanil
Replies:
|