CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Jun 2005
    Posts
    36

    Talking blinking windows

    I'd like to know how can I eliminate blinking windows/frames in java whenever I use dispose();
    thanks.

  2. #2
    Join Date
    Jun 2005
    Posts
    33

    Thumbs up Re: blinking windows

    Try setting the visible property to false and then dispose the frame.

    Ex :
    frame.setVisible(false);
    frame.dispose();

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

Featured