Can someone tell me how to call JDialog from JInternalframe?
public class BSJFrameUpdateOnlineTrdDlg extends JInternalFrame {
public BSJFrameUpdateOnlineTrdDlg(JDesktopPane jdesk) {
super("Backoffice Synchronization");
jdeskTop = jdesk;
frame = this;
try {
jbInit();
}
catch (Exception e) {
e.printStackTrace();
}
setLocation(400, 200);
setVisible(true);
setSize(720, 570);
}
private void jbInit() throws Exception {
jButton1.addActionListener(new jButton1_upload_action());
this.getContentPane().add(jButton1, null);
}
class jButton1_upload_action implements ActionListener{
public void actionPerformed(ActionEvent e) {
displayDialog(frame,marketStatus);
}}
public void displayDialog(JInternalFrame frame,String status){
JDialog jdg = new JDialog();
}
}
this is what i have now. I inserted only the most important lines of code.
source
share