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
8
votes
3 answers

Having the application minimize to the system tray when button is clicked?

How can I have my application minimize itself to the system tray in WindowsXP/Vista? I'm also looking for a way to have a message display itself when the mouse is hovered on the icon. Is it possible to have two lines in the pop up balloon?
Sergio Tapia
  • 40,006
  • 76
  • 183
  • 254
8
votes
1 answer

VB.NET How to Minimize a window to the Taskbar?

How can i Minimize the window to the Taskbar? im using: FormBorderStyle = Windows.Forms.FormBorderStyle.None
BlackOpty
  • 241
  • 6
  • 9
  • 13
7
votes
2 answers

WPF - Hide minimize button of a window

In WPF, how can I hide the minimize button (only the minimize, not also the maximize...) of a window. The code in this forum almost work for me. The behavior of that code is that it's disabled the minimize button. But, how hide…
Melursus
  • 10,328
  • 19
  • 69
  • 103
7
votes
2 answers

scipy.minimize - "TypeError: numpy.float64' object is not callable running"

Running the scipy.minimize function "I get TypeError: 'numpy.float64' object is not callable". Specifically during the execution of: .../scipy/optimize/optimize.py", line 292, in function_wrapper return function(*(wrapper_args + args)) I…
Nipper
  • 207
  • 2
  • 15
7
votes
2 answers

Pocket PC/Windows Mobile: How to detect smart minimize

How do I detect when my Compact Framework application is being smart-minimized (smart minimize is what happens when the user clicks the "X" button in the top-right corner on a Pocket PC)? The Deactivate event isn't the right way because it occurs in…
Qwertie
  • 16,354
  • 20
  • 105
  • 148
7
votes
5 answers

Minimized application showing above the task bar

I have an application that I do not want to show in the taskbar. When the application is minimized it minimizes to the SysTray. The problem is, when I set ShowInTaskbar = false the minimized application shows above the task bar, just aboe the…
mack
  • 2,715
  • 8
  • 40
  • 68
7
votes
1 answer

Python minimize function: passing additional arguments to constraint dictionary

I don't know how to pass additional arguments through the minimize function to the constraint dictionary. I can successfully pass additional arguments to the objective function. Documentation on minimize function is here:…
user2121724
  • 79
  • 1
  • 1
  • 4
7
votes
1 answer

Edge crossing reduction in graph

Are there any algorithms to minimize edge crossings in a graph? For example if I have a transition matrix of the graph. I found methods like trying to place the nodes around the other node, but I'd like to know some other ideas.
DropDropped
  • 1,253
  • 1
  • 22
  • 50
6
votes
1 answer

How do I detect when my window is minimized with wxPython?

I am writing a small wxPython utility. I would like to use some event to detect when a user minimizes the application/window. I have looked around but did not find an event like wx.EVT_MINIMIZE that I could bind to. Anyone know of a way that can be…
Jeroen Dirks
  • 7,705
  • 12
  • 50
  • 70
6
votes
1 answer

programmatically minimize a JInternalFrame?

Is there any way to programmatically minimize a JInternalFrame?
javamonkey79
  • 17,443
  • 36
  • 114
  • 172
6
votes
2 answers

minimize fullscreen Xlib OpenGL Window

I'm currently trying to enable alt-tabbing out of my fullscreen Xlib OpenGL window, but am having some difficulties. I've tried XUnmapWindow(..), which kindof works, but the resolution does not reset (unless I should be doing that manually?) and my…
Jarrett
  • 1,767
  • 25
  • 47
6
votes
2 answers

Scipy Optimize is only returning x0, only completing one iteration

I am using scipy optimize to get the minimum value on the following function: def randomForest_b(a,b,c,d,e): return abs(rf_diff.predict([[a,b,c,d,e]])) I eventually want to be able to get the optimal values of (a) and (b) given the arguments…
Dana McDowelle
  • 269
  • 1
  • 6
  • 13
6
votes
3 answers

Win32 C API for redirecting minimize animation

I have seen RocketDock redirect the minimize animation in Vista so windows minimize to the dock, and am just curious how this was done. Is the actual minimize animation redirected to the dock, or is something like a hook to stop Windows from…
AniDev
  • 1,569
  • 1
  • 18
  • 21
6
votes
5 answers

How could I detect when my application is minimized?

I have a program with an option to enable minimizing to the taskbar's notification area. In order for this to work, I need a reliable way of detecting when the user has minimized the application. How can I do that using the Windows API in a C++…
6
votes
4 answers

Batch - minimize window while running a loop command (not start minimized)

I'm wondering if there is a way to minimize a batch window after it runs a certain command. I already know start /min and tricks to START the window minimized but what about while it's running a loop or timeout? Let's say: echo Hello! timeout /t…
Rakha
  • 1,874
  • 3
  • 26
  • 60