You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ann patil <pa...@hotmail.com> on 2000/09/19 14:52:02 UTC

Problem running JApplet on web browser

Can anybody please help me out

Hi,
    I have written a program extending JApplet for displaying menu.
The program when executed in the browser only shows gray area for the
height and width specified in the html file.It also display
"Load: class MainMenu not found" on the status bar.

I have jdk1.2 and tomcat 1.3 on my system.The program did not give any
errors on compilation.I can run .jsp and servlets without any problem.

Program: MainMenu.java

import java.awt.*;
import java.awt.event.*;
import java.net.*;
import javax.swing.*;
import javax.swing.event.*;
import java.lang.*;
import java.util.*;



public class MainMenu extends JApplet implements ActionListener
{

	public void init()
	{
		//* Menubar and main menus
		JMenuBar mb     = new JMenuBar();
		JMenu FileMenu  = new JMenu("File");

		//* Constructing File menu items
		JMenuItem FileExit  = new JMenuItem("Exit");

		//* Adding file menu items
		FileMenu.add(FileExit);

		//* Adding listener to filemenu items
		//FileExit.addActionListener(mc);

		//* Adding main menu's to the menu bar
		mb.add(FileMenu);

		this.setJMenuBar(mb);
	}


	//* ActionListener code
	public void actionPerformed(ActionEvent ae)
	{
		String arg = ae.getActionCommand();
		if (arg.equals("Exit"))
		{

		}

	}

}


I am new to java programming.Can anybody please help me to trace the 
problem.Is there anything else to be done before executing the program.


Thanks

Ann.
_________________________________________________________________________
Get Your Private, Free E-mail from MSN Hotmail at http://www.hotmail.com.

Share information about yourself, create your own public profile at 
http://profiles.msn.com.