maximize-window

Java: Swing --> Maximize window

I'm putting together a quick and dirty animation using swing (hehehe). I would like the window to be maximized. How can I do that? Thanks in advance :) ...

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 follows: private void Window_SizeChanged(object sender, SizeChangedEventArgs e) { UpdateColumns(); } private vo...

How to maximize command prompt in windows xp

Hi, 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 maximizes it? Is there a way for maximizing? Or maybe an alternative command prompt I can use? thanks ...

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 a link, a new window pops up. If I click another link, the page pops up in the same window as expected. If I minimize the "MyNewWindow" ...

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

Hi guys, 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 WindowState="Maximized" and ResizeMode="CanMinimize", but when window opens, it covers the task bar (i don't want it). I have a...

Detect browser window Maximized/Minimized with Javascript

Hi All 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? I want that when the user clicks the 'maximized' button at the top-right of the browser, the webpage should stretch to a specific w...

PyGTK Timers and Maximized Windows

I have a timer in a PyGTK app, and it works fine --- until I maximize the window; then the timer stops firing. Has anyone experienced this? What can be done about it? Here's a code sample: import gtk, gobject files = ["C:/images/test1.jpg", "C:/images/test2.jpg", "C:/images/test3.jpg"] win = gtk.Window() win.set_title("Slideshow") ...

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 size as the maximized window, which is confusing for the user. Using this alternative code has the same problem: WINDOWPLACEMENT wndpl; Get...