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
0
votes
1 answer

how to capture clicks event on other window that has been minimized

i want to build an app that work in the background, and will capture all click events on the minimize button, of all opened forms / windows that actually running. (not only in my current app) it will be some sort of hook to add minimize handler…
foxdanni
  • 199
  • 1
  • 19
0
votes
1 answer

absolute positioned image appearing out of wrapper when minimizing window

I have a small issue. I searched for relative issues but couldnt find anything. I would like to fix this issue without Scripting if possible, and without adapting body width. So here we go. I would like the Logo to display INSIDE the box area as it…
0
votes
1 answer

VB.net minimize a form with specific size

Here is a sample form I want to minimize. This is the original size of the form: When it is minimized it should hide other parts of the form and only display a specific area and should look like this: I should be able to return back the form to…
Marc Intes
  • 737
  • 9
  • 25
  • 51
0
votes
0 answers

Fail minimizing to system tray in C#

I want to minimize my program to the system tray by clicking an entry in the system menu of the form. So first I created a notify icon and a context menu: private void InitializeComponent() { this.components = new Container(); ... …
altralaser
  • 2,035
  • 5
  • 36
  • 55
0
votes
1 answer

Minimizing a system windows form in tray in C# without seeing it hanging where taskbar

this.ShowInTaskbar = false; this.WindowState = FormWindowState.Minimized; //this.visible = false (Hotkeys stop working forever but the grey rest of the form would disappear from above taskbar) ReRegisterHotkeys(); I use the code above to minimize…
feedwall
  • 1,473
  • 7
  • 28
  • 48
0
votes
0 answers

form minimize on deactive - task bar button does not minimize

I have a form that that minimizes on deactivate but now the task bar button does not minimize the form. It goes away for an instance then comes back. There seems to be a race with the task bar function and the deactivate event where when I click…
user1819780
  • 105
  • 11
0
votes
2 answers

Serve a minimise prototype.js file with Google AJAX Libraries API?

Is Google AJAX Libraries API offering a way to serve framework file in minimize way?
plehoux
  • 795
  • 2
  • 8
  • 21
0
votes
2 answers

using fmincon in matlab

Say i have a function f(X) which i want to minimize with constraints such that some other functions- A(X) = 0 and B(X) = 0 and 0 < C(X) < pi. There are many algorithms to do it, but to make my life easier, i want to use built in function fmincon()…
Sahil Chaudhary
  • 493
  • 2
  • 10
  • 29
0
votes
1 answer

Minimization of open word documents

I am using this code to get and minimize all open Word documents. Word.Application wordApp = new Word.Application(); Word.Documents docs = wordApp.Documents; wordApp.ScreenUpdating = true; wordApp.WindowState =…
Piotr
  • 1
0
votes
1 answer

What Event is used for Maximizing and Minimizing?

What Event is used for Maximizing and Minimizing for Windows Form? I want to show message box when a Form maximizes and the from comes out of minimizing mode.
Hussain Halai
  • 49
  • 2
  • 11
0
votes
1 answer

minimize vb.net forms to mdiparent bottom eg. adobe photoshop

vb.net 2008 I have 1 mdiparent and many child forms. on clicking minimize button of child form it should minimize and display at the botton of mdiparent and not in taskbar. like in adobe photoshop. Is it possible to do? if yes how?
aj1
  • 29
  • 1
  • 8
0
votes
3 answers

Javascript Commands Only Executed When Unminimized

I want to log to the console when I'm using un-minimized JavaScript files. Comments are taken out already when I minimize JavaScript. I'm wondering if there's a way I can write a command that isn't commented out but will still be taken out when I…
JJ.
  • 4,974
  • 5
  • 39
  • 48
0
votes
1 answer

Minimizing application with qt

I created (in Qt5 under Linux) a small QMainWindow app. I noticed that when I'm clicking on the minimizing button, I cannot see my app anymore. In other term, I cannot see it in the bar !? I tried with docky, cairo-dock and native Mint bar and...…
Stef
  • 3,691
  • 6
  • 43
  • 58
0
votes
2 answers

Optimization - Python and Scypi.minimize

I would like to find the position [X,Y,Z] of several elements in order to have the global center of gravity at a desired point. To do so, I defined 2 classes: elements which store the element's mass and position plane which takes a list of element…
CrH
  • 1
  • 1
0
votes
2 answers

After minimizing app, on restore, windows pursues mouse pointer

I have an application in WPF C# where other than the purpose of what it's done, I customized the close and minimize buttons. The problem is that when I minimize, all is good, I cycle around all other apps, but, when I want to go back to the…
user185736