Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

27
votes
6answers
9k views

Java: Swing --> Maximize window

I'm putting together a quick and dirty animation using swing. I would like the window to be maximized. How can I do that? Thanks in advance :)
8
votes
4answers
2k views

How can I remove just the Maximize button from a JFrame?

I have a JFrame and want to remove the maximize button from that. I wrote the code below, but it removed maximize, minimize, and close from my JFrame. JFrame frame = new JFrame(); frame.add(kart); ...
3
votes
2answers
410 views

Delphi - Maximize a form to a particular screen

Quite a simple one i would think, but i need to be able to Maximize a form to a particular screen. Cant seem to find any Delphi specific info. I can remember the forms position over subsequent ...
3
votes
1answer
125 views

How to catch the maximize signal in Tk?

You can bind a command with the X button of the window by this: wm protocol $windowPath WM_DELETE_WINDOW $command How can I do the same for the maximize button of the window?
2
votes
2answers
411 views

WPF : How to move a maximized custom window?

I'm working on a custom window to add more styling to my application. I followed some tutorials to enable basic window behaviors : Closing Maximizing Minimizing Moving Resizing These are all ...
2
votes
2answers
464 views

Maximized Window Restores to Full Screen

Using CWnd::ShowWindow(SW_SHOWMAXIMIZED) maximizes my app window as expected. However, when clicking the restore button on the app (or double clicking the title-bar), the restored size is the same ...
2
votes
5answers
3k views

How to maximize command prompt in windows xp

I am on windows xp, Is there any way to maximize my cmd.exe window? I am doing some mysql and it is so difficult to read results of my queries in such a small window. Why maximize does not really ...
2
votes
2answers
1k views

Maximizing WPF Doesn't Update Width?

The width property of the screen doesn't seem to update to the fully maximized width when maximizing a window. If I resize it everything works fine, but not when maximizing. The code I have is as ...
1
vote
3answers
60 views

Get Size of Window when is Maximized in WPF

i search for a way to get the Width-Property of an Maximized WPF Window. Any Ideas how can i get the absolute value? Thanks a lot.
1
vote
1answer
752 views

Automatically Maximize Window Using Netbeans

I have been trying to get the window to automatically maximize using Netbeans. I've probably looked through 4 or 5 pages of Google for an answer. The web pages always provide something like this: ...
1
vote
1answer
2k views

Detect browser window Maximized/Minimized with Javascript

When the user clicks the Maximized/Restore Down or Minimised buttons of the browser, is there a way to keep track of these events with javascript? Are there any appropriate event or property to use? ...
1
vote
1answer
868 views

How to? WPF Window - Maximized, No Resize/Move

I'm trying to make a WPF window that opens already maximized, with no resize/move (in systemmenu, nor in border). It should be maximized all the time, except when the user minimize it. I tried to put ...
0
votes
0answers
54 views

Troubles with custom borderless windows

I'm working on an application written in C++ and wxWidgets (2.9). It most often runs maximized and I want to preserve as much screen estate and reduce clutter as much as possible. So I have created a ...
0
votes
1answer
72 views

Windows C++ how to startup application maximized?

I am creating a windows application in C++. I am using SDL (http://www.libsdl.org/) - however this question applies to many other types of windows applications written in C++ as I have had the same ...
0
votes
2answers
69 views

Minimize window in Swing

I've created a frame and set it extended state to JFrame.MAXIMIZED_BOTH. The window appears maximazed at startup, but after I pressed "Restore" button, it resizes to zero-sized window with only upper ...
0
votes
3answers
133 views

How to call maximize events manually

I am having one form, and I want that to load in the maximized state. How do I call the windows maximize event on form load?
0
votes
0answers
97 views

Strange main window behaviour

After window maximization, if I switch to another application or press any button or control on the window, window restores its size to original state and size. Have somebody met such strangeness? Why ...
0
votes
1answer
253 views

How to set a JavaFX Stage/Frame to Maximized

I'm using JavaFX 2. I want my frame to open maximized but I'm not seeing a way. I searched a bit on the internet without success. For the stage I see setFullScreen() and setIconified() but I don't see ...
0
votes
0answers
93 views

Maximising and Minimizing a Div Box-Ruby on Rails [closed]

I am on the lookout for a way to minimize/maximize a div box of mine in Ruby on Rails without using traditional jquery or javascript. After some search on the net, i got the following solution ...
0
votes
3answers
321 views

How to trigger the event associated with maximize in C#

Consider the following code: Window myWindow = new MyWindowSubclass(); myWindow.BringIntoView(); myWindow.Show(); // Code which is effective as pressing the maximize button Also, how to detect if ...
0
votes
1answer
102 views

MFC window maximized, but to wrong top coordinate

Sometimes, when I use ShowWindow(SW_SHOWMAXIMIZED), my MFC window is maximized, but it is not positioned at coordinates (0, 0), as it should, it is moved down, for around 30-40 pixels. Any tip on what ...
0
votes
1answer
214 views

C# How do I leave the maximized window as it is?

I am using visual studio 2010 to do my C# GUI. The current problem that I am facing is that after maximizing a window, it stays there but when I go to other forms, the window will go back to its ...
0
votes
1answer
387 views

Maximizing the current window in javascript

Is there a way I can maximize a currently minimized window from Javascript? Here's my situation: I have a series of links that all target the same external window (e.g. "MyNewWindow"). When I click ...