Code:
class myFrame{
private javax.swing.JButton myb;
void myFrame(){
myb = new javax.swing.JButton();
myb.setText("my text");
myb.setBounds(0,0,100,100);
myb.setVisible(true);
}
}
and how to fix it?
thx
jx2
Comment