Tagged Questions

0
votes
3answers
22 views

Maximize Components Too

I have a Windows Forms application that on it I have a RichTextBox, like this: At this size it's all ok, but if the user maximaze or resize the window, the RichTextBox stays at t …
1
vote
1answer
117 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 send …
1
vote
2answers
90 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 o …
0
votes
4answers
493 views

C# Tell If Form Is Maximising

Ok heres my problem. I have a form that when it is not maximised, its maximum size has to be the total height of the components inside the form. To achieve this, i use this: priv …
1
vote
2answers
268 views

How do you disable the Maximize button in MFC?

How do you disable the Maximize button/capability in an SDI application?
2
votes
4answers
483 views

Finding an approximate local maximas with noisy data in Matlab

Hi, 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 d …
0
votes
7answers
2k 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 …
1
vote
4answers
259 views

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

Hi, 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 a …
0
votes
3answers
430 views

Form Resizing and Maximizing

I am preventing the user from resizing the form. How do I also remove the maximize button?
2
votes
2answers
232 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 …
1
vote
1answer
352 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.
0
votes
1answer
641 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
4answers
893 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. W …
0
votes
2answers
286 views

Reserving Desktop Space so maximized windows don’t cover it.

Hi, 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, …