JApplet에서 modal한 JDialog를 띄우고 싶습니다.
제가 시도한 코드 :
---JApplet에서----
new AboutDialog(this);
---JDialog에서----
public AboutDialog(JApplet parent) {
super(JOptionPane.getFrameForComponent(parent), true);
setTitle("About DodgeSnow VERSION " + DodgeSnow.VERSION);
initComponents();
setVisible(true);
}