I am *VERY* green at this, so this is a very basic question.
I apologize.
I have my main form up and running. I have successfully built classes to perform actions upon certain events.
I now would like to be able to bring up another window (form) upon some action. But have been unsuccessful.
I followed the debugger and it appears that all code statements I expected to go through it went through.
I have added the following to the
main form code
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
// List is the panel I want to appear
// ColumnList is a public class. It only produces a Panel
ColumnList List=new ColumnList();
List.setVisible(true);
}
thanks for any help
I apologize.
I have my main form up and running. I have successfully built classes to perform actions upon certain events.
I now would like to be able to bring up another window (form) upon some action. But have been unsuccessful.
I followed the debugger and it appears that all code statements I expected to go through it went through.
I have added the following to the
main form code
private void jButton2ActionPerformed(java.awt.event.ActionEvent evt) {
// List is the panel I want to appear
// ColumnList is a public class. It only produces a Panel
ColumnList List=new ColumnList();
List.setVisible(true);
}
thanks for any help