Results 1 to 2 of 2

Thread: How to set modal to jFrame?

  1. #1

    Thread Starter
    Fanatic Member
    Join Date
    Nov 2003
    Posts
    784

    Question How to set modal to jFrame?

    How to set modal to jFrame?


    <CODE>
    int x= this.getX();
    int y = this.getY() + 150;
    Point location = new Point(x, y);

    FrmSerial frmSerial = new FrmSerial();
    frmSerial.setDefaultCloseOperation(JFrame.HIDE_ON_CLOSE);
    frmSerial.setLocationByPlatform(false);
    frmSerial.setLocation(location);
    frmSerial.setVisible(true);
    </CODE>

  2. #2
    Arabic Poster ComputerJy's Avatar
    Join Date
    Nov 2005
    Location
    Happily misplaced
    Posts
    2,513

    Re: How to set modal to jFrame?

    Use a JDialog instead of a JFrame. JFrames don't support modal mode
    "I'm not normally a praying man, but if you're up there, save me... Superman!" - Homer Simpson
    My Blog

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width