Questions tagged [minimize]

To minimize is to replace one object with another object that can restore the original when selected.

In a graphical interface, to minimize is to replace one object with another, less obtrusive object that can restore the original when selected. The original object is often a window; the minimized form is often an iconic button located in a system dock, tray or task bar.

849 questions
-2
votes
1 answer

check if 2d array of string forms a chess board pattern

Given an N array of strings of N length, return the minimum number of character changes required to create a chessboard pattern (a change means replacing characters). for instances ["ab", "ba"] --> 0 ["aba", "bac", "aba"] --> 1 i am really lost,…
Antonia Calvi
  • 127
  • 1
  • 3
-2
votes
1 answer

pressing home button and go again in activity restat the first activity not the last

when I press home button from my application during second activity, and switch back to my application, it restart with the first activity and not resume the last one. any idea?
Vulneraria
  • 139
  • 1
  • 9
-2
votes
4 answers

how to minimize repetitive code in jquery?

How can I minimize the following bindings in jquery: var profileIdDefault = "Profile ID"; var organisationIdDefault = "Competitor ID"; var FromDateDefault = "From Date"; var ToDateDefault = "To Date"; …
Farhad-Taran
  • 6,282
  • 15
  • 67
  • 121
-2
votes
2 answers

How to minimize iPhone App on button click action?

On button click I want my app to be minimize.. I try to use exit(),but apple reject application when exit is being used. What is the perfect solution for this?
-2
votes
1 answer

Minimize all running windows when application runs

I am working on a C# windows form application. How can i edit my code in a way that when more than 2 faces is being detected by my webcam. More information: When "FaceDetectedLabel.Text = "Faces Detected : " + cam.facesdetected.ToString();" becomes…
Derek
  • 239
  • 1
  • 7
  • 15
-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
3 answers

Returning the smallest integer of an increasing function

Write a function lowest_integer() which takes 2 input arguments: a function f representing an increasing function (), a number fmin, and returns an integer nmin such that >0 is the smallest integer that satisfies ()>. To test the function we use…
-4
votes
4 answers

Minimizing lines of code

I have a few lines of code for making a rotated string for a Caesar cipher and just for fun I am trying to condense them into one. Obviously this is pointless since it is completely unreadable but I'm curious. Still, I can't quite figure out how to…
SirParselot
  • 2,640
  • 2
  • 20
  • 31
-4
votes
1 answer

Want to float the image after minimizing the windows in html?

I am creating a webpage in which there is an image on the extreme left when the browser is maximized but as soon as the browser gets minimized i want the image to move to extreme right .. How to do that ? I tried float but it's not working..
1 2 3
56
57