| | |
display the System.out.print msgs
![]() |
•
•
Join Date: Apr 2008
Posts: 18
Reputation:
Solved Threads: 1
The following code is used for creating java frame.
import java.awt.*;
import java.awt.event.*;
class test extends Frame implements WindowListener{
test(){
setTitle("Java Frame");
setSize(400,250);
addWindowListener(this);
setVisible(true);
}
public void windowOpened(WindowEvent e){}
public void windowClosing(WindowEvent e){
System.exit(0);
}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public static void main(String ars[]){
test t = new test();
}
}
------------------------------------------------------------------
this code is used to print the string in the frame
Graphics g;
g.drawString(variable_name,x,y);
variable_name -> print string
x -> x axis in the frame
y -> y axis in the frame
this code is used to print the string in the frame
import java.awt.*;
import java.awt.event.*;
class test extends Frame implements WindowListener{
test(){
setTitle("Java Frame");
setSize(400,250);
addWindowListener(this);
setVisible(true);
}
public void windowOpened(WindowEvent e){}
public void windowClosing(WindowEvent e){
System.exit(0);
}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public static void main(String ars[]){
test t = new test();
}
}
------------------------------------------------------------------
this code is used to print the string in the frame
Graphics g;
g.drawString(variable_name,x,y);
variable_name -> print string
x -> x axis in the frame
y -> y axis in the frame
this code is used to print the string in the frame
![]() |
Other Threads in the Java Forum
- Previous Thread: Help With an error
- Next Thread: binding properties
| Thread Tools | Search this Thread |
addball android applet application apps array automation awt bidirectional binary birt bluetooth businessintelligence busy_handler(null) button card class classes client code collision columns component constructor crashcourse css database designadrawingapplicationusingjavajslider draw eclipse ee error eventlistener exception expand fractal free game givemetehcodez graphics gui guidancer html ide image integration intellij j2me java javaarraylist javadoc javafx javamicroeditionuseofmotionsensor javaprojects jme jni jpanel jtree julia jvm linux loan loop method migrate mobile mobiledevelopmentcreatejar myaggfun netbeans newbie oracle phone physics plazmic print problem program programming project radio scanner server service set sharepoint smart sms smsspam software sql subclass support swing textfield threads tree trolltech unlimited utility windows





