Maximize refers to the process of increasing a certain value to its fullest, biggest, or greatest (max).
Questions tagged [maximize]
396 questions
-1
votes
2 answers
How can I make a button that maximize?
I need to do a button on windows form in c# that maximize and make window normal size every time I push it. I try a code, but it works just if the window is already maximize and just a half of it. How can I solve this? My code is:
if…

Liviu Panța
- 1
- 3
-1
votes
1 answer
How to maximize the total probability?
I want to maximize the total probability of winning in a game of random selection which is played as follows,
I have n lottery tickets and out of these n only 1 is the lucky ticket, now I have 2 option either draw a ticket or ask the master to…

cooldude
- 63
- 10
-1
votes
2 answers
Maximizing Google Chrome on Macbook Pro - Can't Search?
When I maximize Google Chrome on my MacBook Pro, (SHIFT, COMMAND, F)
I can't see my tabs or search bar on chrome?
Is there a way to fix this?
Thanks in advance.
-1
votes
2 answers
How to cheaply deal with multiple ranges (finding a maximum)
I have an amount of ranges, each with a weight. Every point on the total range is scored by the sum of the weights of all the ranges the point falls into. I'd like to be able to cheaply find the total value of points, and would like to be able to…

AnythingElse
- 99
- 6
-1
votes
1 answer
Maximizing borderless form with multiple monitors c#
I'm currently making a borderless form with a Doubleclick event to maximize form. But I realized that the form wouldn't maximize on the two other screens, only my main middle.
So my code is currently:
private void Form1_DoubleClick(object sender,…

KrisPus
- 53
- 2
- 13
-1
votes
1 answer
Resize components inside user control while maximiziing
I am using c# and i am creating a simple design where i have a user control and some components inside it like treeviews and buttons. I am trying to fill a treeview with some nodes and drag-drop these nodes to other treeview and use the buttons to…

MohamedSalem
- 5
- 3
-1
votes
1 answer
Vim PC window resize/max on Windows 8.1
I cant figure out why, but my vim74 on Windows 8 wont maximize. In fact it is very limited to a certain size.
This is the max size and I don't know how to make it bigger.
Also when I input a command (e.g. :q) character that I didn't input comes…

younghwanee
- 11
- 3
-1
votes
1 answer
Minimize/maximize parent JFrame
Im making a quiz application. And when a team pushed their button, they aren't allowed to still see the question or see the video/audio piece. This kind of information is displayed in the quizview ( this is a jpanel ) added to a parent JFrame. What…

user3485470
- 121
- 5
- 11
-2
votes
2 answers
Delphi: Maximize a Child Window in MDI Project
There is the good component to maximize a child window in a client area (the SHIFT key must be held) - NLDExtraMDIProps.
Or this code can be used:
procedure WMSIZE(var Msg: TMessage); message WM_SIZE;
procedure TForm2.WMSIZE(var Msg:…

maxfax
- 4,281
- 12
- 74
- 120
-2
votes
1 answer
Maximizing a function in Matlab
I have a function in matlab called function UFamily = CalcUFamily(hh,hw). The value of the function is determined by hh and hw (working hours for husband and wife in a family). I want to get the hh and hw that maximizes the function UFamily.
How…

KGB91
- 630
- 2
- 6
- 24
-2
votes
3 answers
How to find the a triplet in an array of numbers having maximum product?
Today i got stuck on the following problem.Kindly provide some clues, the statement is following:
Given an array A[] of size n. Maximize A[i]*A[j]*A[k] under the following constraints:
i < j < k
A[i] < A[j] < A[k]
The code which i tried is as…

Rahul Choudhary
- 59
- 1
- 8
-2
votes
1 answer
C# Launch a game maximized
I'm using C# visual studio with XNA and I would like to launch my game in maximized instead of fullscreen, and nothing found on google has worked yet...
I tried using:
Form form = (Form)Control.FromHandle(Window.Handle);
form.WindowState =…

Falquano
- 11
- 4
-2
votes
2 answers
Given sum of two numbers A and B find maximum product of A and B
Given sum of A and B let S
i have to find maximum product of A*B
but there is one condition value of A will be in range [P,Q]
How to proceed for it ?
If there is no range then task is pretty simple.
Using derivation method .
How to find Maximum…

chandan111
- 251
- 2
- 6
- 16
-3
votes
1 answer
How can I find the optimal solution of quadratic function
How can I minimize or maximize a quadratic function?
what is the algorithm for that?
Thanks!

AdyM
- 13
- 4
-3
votes
1 answer
How to catch Maximize started event using Window Message, etc
I was able to get Maximized and Size changed events, but not Maximize started.

TƎИ. developer
- 15
- 5