• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

SWING/JFC/APPLET

 
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
i am designing an applet using swing(JApplet), i want to display a popup window on click of a button. i have used JWindow but is shows a status bar saying "warning:Applet Window"
if anyone knows how to remove that or a better way to create a popup window that please reply.
 
Ranch Hand
Posts: 148
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Use JDialogs, they are the best in displaying popup messages. They can be modal also & you can customize it to display whatever type of messages you want for eg.,Information , Error , confirmation.
 
mukesh
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
my requirement is, it should not show any top title bar and also any status bar saying "warning:applet window".is it possible using JDialog?

Originally posted by Vinod Venugopal:
Use JDialogs, they are the best in displaying popup messages. They can be modal also & you can customize it to display whatever type of messages you want for eg.,Information , Error , confirmation.


 
Ranch Hand
Posts: 1492
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
In order to get rid of the Warning you need to sign your applet. The warning exists to tell the user that this is an unsigned applet and should not be ignored. Once you have signed your applet the warning will magically not appear!
NOTE: Your name doesn't fit with the naming policy here at the Ranch. Please read the naming policy here and re-register with a valid name.
Regards,
Manfred.
[This message has been edited by Manfred Leonhardt (edited December 17, 2001).]
 
mukesh
Greenhorn
Posts: 3
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi,
can i design hyperlinks using swing(same as html links)?

Originally posted by Manfred Leonhardt:
Hi,
In order to get rid of the Warning you need to sign your applet. The warning exists to tell the user that this is an unsigned applet and should not be ignored. Once you have signed your applet the warning will magically not appear!
NOTE: Your name doesn't fit with the naming policy here at the Ranch. Please read the naming policy here and re-register with a valid name.
Regards,
Manfred.
[This message has been edited by Manfred Leonhardt (edited December 17, 2001).]


 
Vinod Venugopal
Ranch Hand
Posts: 148
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
You can use the HTML Editor Kit to implement hyper links in your application..use a JEditorPane to display a webpage & then implement the HyperLinkListener interface for hyperlink events.
 
reply
    Bookmark Topic Watch Topic
  • New Topic