Write a java applet Program to perform Mouse Event

import java.applet.Applet;
import java.awt.event.*;
import java.awt.Graphics;
import java.awt.Event;
public class MouseEvents extends Applet implements MouseListener,MouseMotionListener
{
  String msg = " ";
public void init()
{
  addMouseListener(this);
  addMouseMotionListener(this);
}
public void paint(Graphics g)
{
  g.drawString(msg,20,20);
}
public void   mousePressed(MouseEvent me)
{
  msg="MousePressed";
  repaint();
}
 public void   mouseEntered(MouseEvent me)
{
  msg="MouseEntered";
  repaint();
}
public void   mouseClicked(MouseEvent me)
{
  msg="MouseClicked";
  repaint();
}
public void   mouseExited(MouseEvent me)
{
  msg="MouseExited";
  repaint();
}
public void   mouseReleased(MouseEvent me)
{
  msg="MouseReleased";
  repaint();
}
public void   mouseMoved(MouseEvent me)
{
  msg="MouseMoved";
  repaint();
}
public void   mouseDropped(MouseEvent me)
{
  msg="MouseDropped";
  repaint();
}
public void   mouseDragged(MouseEvent me)
{
  msg="MouseDragged";
  repaint();
}
}




********************************************************************

HTML

<html>
<applet code="MouseEvents.class" width="800" height="500">
</applet>
</html>

For more details about How to Earn Money Online please visit

http://codetherush.in/

College Projects with source code (PHP, .NET, JAVA, Visual Basic)


Pharmacy Management System in PHP and MySQL with Source Code


2018 Top WordPress Plugins for Business Websites


Top 10 Best Photo Editing Apps For Android


Best 2018 Android Hacking Apps


30 Best Free WordPress Blog Themes for 2017


Online Loan Management System


Car Rental System Using PHP


Online Jewellery Shopping System Php Project with source code


Online time table generation system in PHP


Online Examination System In PHP


PHP Website with DataBase As MySql


18 Ways to Earn Money Online from Home Without Investment


Online Survey Jobs: Earn from 20 Best Paid Survey Sites


Get Paid to Take Online Surveys for Money with 21 Best Sites


Top 10 Captcha Entry Job Sites


Best Get Paid to Offer & GPT Sites


Get Paid to Read & Click Ads from Best PTC Sites


How To Restore Your WordPress Website Backup On Local Server Using WAMP


Online Shopping System Using PHP and MySQL


Email server using PHP and MySQL


Hotel Reservation System In PHP


social media platforms Project In PHP


Crime Reporting System Project In PHP


Gmail Outlook Settings In Outlook 2016


Airlines Reservation System Java Project


Mail Server in PHP And MySQL


Online Examination System in PHP and MySQL


Student Information System using Vb and SQL


Payroll Management System In VB and SQL


Exam Seating Management System


Automation Inventory System in VB and SQL Server


School Management System

No comments

Powered by Blogger.