Hi, i want to call frame B from Frame A
private void BFrameBActionPerformed(java.awt.event.ActionEvent evt) {
Frame B = new Frame
B.setVisible(true);
}
NOTE :calling JframeB is trigerred by a jButton
but when I do this FrameA overlays my Frame B. can someone help me with this?