Search...
FAQs
Subscribe
Pie
FAQs
Recent topics
Flagged topics
Hot topics
Best topics
Search...
Search within Swing / AWT / SWT
Search Coderanch
Advance search
Google search
Register / Login
Win a copy of
Cloud Application Architecture Patterns: Designing, Building, and Modernizing for the Cloud
this week in the
Cloud/Virtualization
forum!
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
Tim Cooke
paul wheaton
Paul Clapham
Ron McLeod
Sheriffs:
Jeanne Boyarsky
Liutauras Vilda
Saloon Keepers:
Tim Holloway
Carey Brown
Roland Mueller
Piet Souris
Bartenders:
Forum:
Swing / AWT / SWT
How to disable maximise button of jframe
nishant vats
Greenhorn
Posts: 23
posted 20 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
actually am developing application and i want to disable maximize button of jframe...
i am using this to enable
JFrame.setDefaultLookAndFeelDecorated(true);
now i want to disable the maximize button
Michael Dunn
Ranch Hand
Posts: 4632
posted 20 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
JFrame.setResizable(false);
or
setResizable(false);//if extending JFrame
but you can't drag the borders to make the frame bigger/smaller, only minimize
to the taskbar
nishant vats
Greenhorn
Posts: 23
posted 20 years ago
Number of slices to send:
Optional 'thank-you' note:
Send
thanks Dunn for this..its working fine.....
With a little knowledge, a
cast iron skillet
is non-stick and lasts a lifetime.
reply
reply
Bookmark Topic
Watch Topic
New Topic
Boost this thread!
Similar Threads
How do you maximize on frame load?
new JFrame in a Java Desktop Application
Disable JFileChooser Maxmize button in Mac
Disabling the close and maximize icons.....
JDialog
More...