Maybe JDialog will not be modal even if you say it to be modal.

therefore you can attach your dialog to the browsers frame

use

Container cont = 'your applet';

 while(cont != null)
  {
    cont = cont.getParent();
    
    if(cont instanceof Frame) return (Frame)cont;
  }
  return (Frame)null;

to get attached to the browser.



Salvador Richter
Web-Applikationsentwickler/Projektleiter

mailto:[EMAIL PROTECTED]
-------------------------------------------- 
in-integrierte informationssysteme GmbH
Am Seerhein 8     
D-78467 Konstanz
http://www.in-gmbh.de
--------------------------------------------
Telefon +49 (0) 7531 - 81 45- 0
Telefax +49 (0) 7531 - 81 45-81  



_______________________________________________
Advanced-swing mailing list
[EMAIL PROTECTED]
http://eos.dk/mailman/listinfo/advanced-swing

Reply via email to