• 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

Setting Title Icon in JDialog

 
Greenhorn
Posts: 2
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi,
I have a problem with JDialog.
Well, I have a JDialog object whose resizable property is set to false i.e by setResizable (false). In this case, it does not display an icon in its Title bar. When its resizable property is set to true by using setResizable( true ), it shows Java Icon there. What i need is, i should have a JDialog object with its resizable property set to false (by setResizable( false )) and have a java icon its Title bar.
Could you help me in this?
Thanks in Advance,
Ciddharthan
 
Bartender
Posts: 4121
IntelliJ IDE Spring Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
First...
"Ciddharthan" -

Welcome to the JavaRanch! Please adjust your displayed name to meet the
JavaRanch Naming Policy.
You can change it here.


Now, on to the question...

Read this bug report on Sun's site... Non-resizable dialogs aren't supposed to have icons because you can click on the icon to resize the dialog.

Thanks! and welcome to the JavaRanch!
 
Greenhorn
Posts: 1
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Now it works:


 
reply
    Bookmark Topic Watch Topic
  • New Topic