Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

26
votes
2answers
708 views

Maximize and Aero snap on DockableFloatingWindow

I have the following code to give a undocked floating AvalonDock window the ability to maximize: class MaximizableDockableContent : AvalonDock.DockableContent { public ...
8
votes
2answers
364 views

Disable resizing out of browser Silverlight 4 Window [closed]

Possible Duplicate: How can I prevent the user from resizing the silverlight out-of-browser window? Is there any way to actually remove the ability to maximize/resize the out of browser ...
7
votes
7answers
755 views

Algorithm for maximizing coverage of rectangular area with scaling tiles

I have N scalable square tiles (buttons) that need to be placed inside of fixed sized rectangular surface (toolbox). I would like to present the buttons all at the same size. How could I solve for ...
4
votes
1answer
164 views

How to make a form float in a workarea as it is the screen (move, size, maximize, minimize)?

I try code published by Freddie Bell at What is the best way to make a Delphi Application completely full screen? question, as is what i needed. I also set minimun size to be the original size. ...
4
votes
1answer
150 views

C++ Windows remove maximize box

I'm using these window styles when calling CreateWindow WS_OVERLAPPED | WS_CAPTION | WS_SYSMENU | WS_MINIMIZEBOX This disables the maximize box, but is there any way I can completely remove it?
4
votes
3answers
2k views

Disabling Minimize & Maximize On WinForm?

WinForms have those three boxes in the upper right hand corner that minimize, maximize, and close the form. What I want to be able to do is to remove the minimize and maximize, while keeping the ...
3
votes
4answers
119 views

Solving a simple maximization game

I've got a very simple question about a game I created (this is not homework): what should the following method contain to maximize payoff: private static boolean goForBiggerResource() { return ...
3
votes
2answers
178 views

more pythonic way of finding element in list that maximizes a function

OK, I have this simple function that finds the element of the list that maximizes the value of another positive function. def get_max(f, s): # f is a function and s is an iterable best = ...
3
votes
4answers
2k views

Finding an approximate local maximas with noisy data in Matlab

The matlab FAQ describes a one-line method for finding the local maximas: index = find( diff( sign( diff([0; x(:); 0]) ) ) < 0 ); But I believe this only works if the data is more or less ...
2
votes
4answers
85 views

Minimize the number of consecutive equal extractions in a deque of map<string, string>

I hope this place is the best for this kind of question. I've the following problem (I think is more complex than it appears). I'm using a double-ended queue (deque) data structure of strings. deque ...
2
votes
2answers
243 views

Maximizing windows underneath my form

I have a toolbar that is always on the top (topmost = true) but when i maximize other programs the top of their windows is hidden behind it. I want them to maximize BENEATH my toolbar so i can ...
2
votes
2answers
205 views

How to maximize a the height of a JFrame?

Windows doesn't support myFrame.setExtendedState(JFrame.MAXIMIZED_VERT);. So I tried to get the screen size and made the JFrames height as big as the screens height. But then it covers the Windows ...
2
votes
1answer
331 views

Problem when maximizing window in C++

My program needs to arbitrarily maximize any window on the current desktop. I achieve this by calling ShowWindow(hWnd, SW_MAXIMIZE), where hWnd is the HWND of the window I want to maximize. When that ...
2
votes
1answer
399 views

control desktop maximize area in C#

Is there a way to control what space of the screen windows can be maximized to, in C#
2
votes
2answers
463 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
1answer
868 views

How to disable maximize button in delphi program?

How to disable maximize button in delphi program?
2
votes
3answers
902 views

.NET/WinForms: maximize a window on a specific screen

i have a dual monitor setup and i want my c# application to maximize its window on a specific Screen. how can i do that? thanks!
2
votes
4answers
451 views

How to maximize power used by my application in C#?

As I've created the application that is hard on calculations -> lots of work to do, not very complex calculations -> it takes too long to work it out and the process is only at 45% of the CPU. Can I ...
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 ...
2
votes
2answers
3k views

Adobe AIR app fit screen(maximize) by itself

Is there a way to make an Adobe AIR app fit screen(maximize) by itself when it's launched?
1
vote
1answer
92 views

Maximize MDI child form

I'm working on a legacy WinForms MDI application and have some trouble making the child forms behave as I want. My objective is to have the child form always maximized (docked). The problem is, that ...
1
vote
1answer
36 views

How to make a window not associated with the application minimize or maximize its window state in vb?

If you have ever noticed in the Task Manager, when you right-click on the running task, you have many options which include 'Minimize' and 'Maximize'. Is there anyway to do achieve this in vb?
1
vote
0answers
53 views

maximize a JFrame in a multi monitor setup

My Swing application uses JFrames. When one of the JFrames is dragged to a second monitor and the maximize button is pressed, it maximizes itself to the size of the (smaller) primary monitor. Can that ...
1
vote
1answer
85 views

Expand Usercontrol to full window size

I am currently working on a project which has a tab control which contains a Wrap panel which contain a series of user controls. I am looking for a way to allow the user to select one user control and ...
1
vote
1answer
128 views

Algorithm for finding maximum number of valid combinations?

OK... so I have a bit of a tricky one (for me, at least). I have a list of simple objects and I need to figure out how to find a combination that makes use of the maximum number. Each of these ...
1
vote
1answer
135 views

Why won't my WPF controls scale when my window is maximized via touching the top of the screen in Windows 7?

I have a borderless window created for my WPF application. It resizes perfectly on the sides and corners and also when I drag it to the left or right side of the screen it perfectly scales to fit half ...
1
vote
1answer
88 views

Is it possible maximize the window without JSNI

I'm using this function to maximize the window: /** * Resize the principal window */ public static native void resizeWindow() /*-{ top.window.moveTo(0,0); ...
1
vote
1answer
156 views

Adobe AIR application maximization problem

I have an application developed using Adobe AIR. If the target machine is using Windows XP it's working as expected, coming properly on the screen in both the Minimized and Maximized states. But when ...
1
vote
2answers
324 views

How can I stretch everything in my window when window is maximized in wpf?

I have got my main wingow with ribbon tabs and a datagrid. How can I maximize everythin in the window when window is maximized to fit the screen?I am trying to use viewbox but its not working. ...
1
vote
1answer
227 views

How to maximize a JFrame thru code?

How to maximize a JFrame thru code?
1
vote
1answer
746 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
3answers
387 views

Centering elements when resizing windows in VB6

I'm building an application in VB6 where the standard form size is 1024x768, for the older monitors that will see it. Some of the users will, however, have higher resolutions available, and I'd like ...
1
vote
1answer
542 views

.Net/Winforms, Dual monitor - Borderless Window - Maximizing doesn't work

I have a question that were not answered on http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/fa521007-f317-48f1-9cdd-de2dbcb17aa8 (last posts are my posts). StackOverflow is better forum so ...
1
vote
1answer
609 views

Remove minimize/maximize buttons from window, OpenTK

I need to disable/remove the minimize and maximize buttons in window form. I don't know how to access the form from my OpenTK.GameWindow, any help is appreciated.
1
vote
1answer
891 views

How to remove the window border (containing minimize, maximize and close buttons) from a Qt widget?

I would like to animate a widget (QPushButon) to move across my application screen. For that I create a new button and using the QPropertyAnimation class and the property "geometry" of the button, I ...
1
vote
1answer
627 views

Maximizing a JFrame on action?

Does anyone know how to maximize a JFrame once a specfic action has occured? I'll post my code below, I'm a fiend for not commenting my code (I'll do it at some point) but it should be fairly self ...
1
vote
3answers
2k views

Qt hide minimize, maximize and close buttons

Do you know how to hide minimize, maximize and close buttons of title bar in Qt. i did it before in some other project but i could not find it now. could u help me? especially i need to hide it on ...
1
vote
1answer
1k views

How can I make a WPF window maximized on the screen with the mouse cursor?

According to the MSDN documentation for the WindowStartupLocation Property: Setting CenterScreen causes a window to be positioned in the center of the screen that contains the mouse cursor. ...
1
vote
1answer
161 views

Eclipse shortcut ctrl+m behavior

In eclipse we have the ctrl+m shortcut for maximizing windows. But when you have two editors opened side by side, it maximizes both editors. Is there anyway to change the default behavior of ctrl+m ...
1
vote
2answers
5k views

Enable Maximize, Minimize and Restore Window in WPF (Manual Resize is disable)

I need to enable the following on my application (C# WPF application): 1) Have normal size of 1024*768 2) The user can maximize the application 3) The user can minimize the application 4) The user can ...
1
vote
2answers
1k views

Repaint frame when resized?

How would I force a Frame to repaint() immediately after it is maximized, or resized? I can't find what method is called when that specific operation takes place. I have a bunch of graphics that are ...
1
vote
1answer
728 views

Maximize child window of other application (VB .Net)I'

I'v used findwindowex to find the child window. I used findwindow to find the big application, and I found that with spy++. I know that it is the right one because I'm able to sendkeys to it and they ...
1
vote
2answers
1k views

How do you disable the Maximize button in MFC?

How do you disable the Maximize button/capability in an SDI application?
1
vote
1answer
689 views

How do you make a window to fill the entire screen?

Can someone give me a pointer on how to make a window in Shoes to fill the entire screen? I am looking to have a window that is akin to Writeroom. Thanks.
1
vote
6answers
8k views

WPF - Maximizing app window does not expand controls vertically - horizontally it does

when I press the Maximize button on my WPF app, all the controls therein expand perfectly horizontally, but they do not expand to fill the window vertically. I figure it Maximize handles it ...
1
vote
4answers
2k views

Showing the Restore Button without a Maximize button

I want to prevent the user from maximizing the Windows Form to full screen so I have disabled the Maximize button. However, I want to be able to have the user 'restore' the Form. When they click the ...
1
vote
2answers
796 views

Reserving Desktop Space so maximized windows don't cover it

I'd like to "reserve" a portion of the screen so that maximized windows don't cover that area (think taskbar(Win) or dock(mac). I've seen other programs that have done this, but really have not liked ...
0
votes
3answers
63 views

Maximize area of a triangle given n points

The code runs perfectly when I arbitrarily pass arguments to the area function. But gives me a segmentation fault when I try to run the loops. Given n<100 Here's my code. #include<stdio.h> ...
0
votes
0answers
33 views

Borderless Silverlight Out Of Browser App - Maximize on Second Monitor Issue

I am trying to fix this problem in an application and haven't been able to find a work around. I have created a brand new app which exhibits the same problem so it isn't our app. Basically, we have ...
0
votes
1answer
153 views

c# Maximize Window from System Tray

I am having trouble trying to bring my application window to the front (i.e on top of all other windows). I want the user to be able to double click the notifyIcon in the system tray, and If the ...

1 2