Frank Sommers
Posts: 2642
Nickname: fsommers
Registered: Jan, 2002
|
|
Re: setting Windows screen resolution from Java
|
Posted: Jul 31, 2003 2:01 PM
|
|
> Are you sure you need to change the resolution?
The application I have requires a UI to display lots of fields at once to the user (i.e., the users want to be able to see all that data at once). But the only way to fit all those fields in view is to have a resolution at least 1024x768. If the resolution is set to less than that, I'd like to be able to offer the user to have the app change the resolution (right now I just display a message, asking the user to make this change himself, but many of our users are not sophisticated enough to know how to do that).
> > If you are using 1.4 java you may consider using > fullscreen mode instead. Much more user-friendly I think.
I looked a bit into the full-screen mode, by my understanding is that it wouldn't work well for Swing-based apps. For instance, I'd have to tweak the drawing routines of the components, something that I'd really won't want to do. Also, the users in our case are allowed to resize/minimize/maximize the app, and my understanding is that that just doesn't work well with full-screen mode.
Do people use full-screen mode for regular desktop-style apps?
|
|