Mouse click example Q. Write a Java program to define an applet , which will contain a label and when we click on the applet , the message will appear on the label. import java.applet.*; import java.awt.*; import java.awt.event.*; /* <applet code="MouseDemo1" height=200 width=200> </applet> */ public class MouseDemo1 extends Applet implements MouseListener { Label lbl; public void init( ) { ...
FOR EVERY PROGRAMMER SOME SPECIAL PROGRAMS WITH THEORY.