Results 1 to 3 of 3
Thread: No output with this code
- 04-11-2012, 04:58 AM #1
Member
- Join Date
- Apr 2012
- Posts
- 1
- Rep Power
- 0
No output with this code
I didn't get o/p wid dis code also....I am not getting only applet based programs.......... why i am not getting.
and i am using ubuntu as os..
import java.awt.event.*;
import java.awt.*;
import java.applet.*;
public class Mouse extends Applet implements MouseListener
{
int x=0,y=0;
String msg="";
Graphics g;
public void init()
{
//addMouseMotionListener(this);
addMouseListener(this);
}
public void mouseEntered(MouseEvent me)
{
x=0;y=20;
msg="entered";
repaint();
}
public void mouseExited(MouseEvent me)
{
x=0;y=20;
msg="exited";
repaint();
}
public void mouseClicked(MouseEvent me)
{
x=0;y=20;
msg="clicked";
repaint();
}
public void mousePressed(MouseEvent me)
{
x=0;y=20;
msg="pressed";
repaint();
}
public void mouseReleased(MouseEvent me)
{
x=0;y=20;
msg="released";
repaint();
}
public void paint(Graphics g)
{
g.drawString(msg,x,y);
}
}
Is there any problem wid dis code...............?
- 04-11-2012, 07:11 AM #2
Re: No output with this code
1. When you have a question, start a new thread -- they're free. Don't hijack another poster's thread, and don't wake threads that have been dead for four years.
2. Please maintain the decorum of a technical forum. 'I didn't get output with this code" not "I didn't get o/p wid dis code."
3. Use code tags when posting code so that the posted code retains its formatting.
dbWhy do they call it rush hour when nothing moves? - Robin Williams
- 04-11-2012, 01:20 PM #3
Similar Threads
-
servlet include method copying sorce code and executing source code as output how to
By shamkuma2k in forum Advanced JavaReplies: 0Last Post: 08-07-2011, 08:32 PM -
problem with output of code
By amosexy in forum New To JavaReplies: 15Last Post: 07-05-2010, 06:57 PM -
needed code for this output
By rajivjoshi in forum New To JavaReplies: 4Last Post: 05-31-2010, 05:54 PM -
What will be output by the following code? using trim method.
By racewithferrari in forum New To JavaReplies: 4Last Post: 11-17-2009, 09:40 PM -
Need help formatting output and some code
By A5i19 in forum New To JavaReplies: 6Last Post: 11-09-2009, 04:58 AM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks