CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Guest

    Dialogs on top in Applets

    Is there anyway that Dialogs can be made Modal when called in an Applet ?
    I have several classes which require input and extend the Dialog class I wish these to stay on top and nullify all other areas of the screen but just now if the user clicks outside the dialogs boundry then the message simply hides behind the browser.


  2. #2
    Guest

    Re: Dialogs on top in Applets

    Can u try this if u have a netscape naviagtor
    getParent().getClass().getSuperclass().getSuperclass() will return a java.awt.Frame (is a Class type object) and use this in the constructor of Dialog.I hope this will not hide ur dialogs
    In Explorer u need to explore and see if there exist a Frame



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