Thu Dec 09, 2010 6:15 pm
import javax.swing.JWindow;
public class Test extends JWindow{
public Test(){
super();
setVisible(true);
}
public static void main(String args[]){
Test app = new Test();
for(int i = 10; i <400; i++){
app.setBounds(100 - (i/2), 300 -(i/2), i, i);
}
}
}
Thu Dec 09, 2010 10:02 pm
Fri Dec 10, 2010 2:28 pm
msi_333 wrote:or JFrame ?
|
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com
Powered by phpBB © phpBB Group.