Results 1 to 3 of 3
Thread: Applets
- 11-01-2011, 10:59 AM #1
Member
- Join Date
- Sep 2011
- Location
- Sale, Cheshire
- Posts
- 10
- Rep Power
- 0
Applets
Hi, I get a ClassNotFound Exception each time I try to run this applet, is it because I have added the applet code to the code source file rather than creating a separate html file? any help would be appriciated, thanks. MBD.
Java Code:import java.awt.*; import java.applet.*; <applet code="Banner" width=300 height=50> </applet> public class Banner extends Applet implements Runnable { String msg = " Java Rules the Web "; Thread t; boolean stopFlag; public void init() { // Initialize t to null. t = null; } public void start() { // Start the thread. t = new Thread(this); stopFlag = false; t.start(); } public void run() { // Entry point for thr Thread char ch; // that runs the Banner. for( ; ; ) { // Display Banner. try { repaint(); Thread.sleep(250); ch = msg.charAt(0); msg = msg.substring(1, msg.length()); msg += ch; if(stopFlag) break; } catch(InterruptedException exc) { } } } public void stop() { // Pause the Banner. stopFlag = true; t = null; } public void paint(Graphics g) { // Display the Banner. g.drawString(msg, 50, 30); } }
- 11-01-2011, 11:30 AM #2
Senior Member
- Join Date
- Aug 2011
- Posts
- 248
- Rep Power
- 2
Re: Applets
Applets is not my strong side but where is the main method?
Anyway there is a section for Java Applets
- 11-02-2011, 03:49 AM #3
Member
- Join Date
- Sep 2011
- Posts
- 3
- Rep Power
- 0
Similar Threads
-
Applets
By rdjava in forum Advanced JavaReplies: 2Last Post: 01-27-2011, 12:07 AM -
New to Applets
By Psyclone in forum Java AppletsReplies: 8Last Post: 02-28-2010, 04:00 AM -
I need help with Applets
By ProgrammingPup in forum Advanced JavaReplies: 1Last Post: 12-22-2009, 08:07 PM -
Can't see any Applets
By pyr0chem in forum Java AppletsReplies: 9Last Post: 12-17-2008, 04:24 AM -
applets on mac what´s going on?
By willemjav in forum Java AppletsReplies: 6Last Post: 04-19-2008, 07:03 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks