Questions tagged [minimized]

A minimized object is one that has been replaced with an object that can restore the original when selected.

In a graphical interface, a minimized object is one that has been replaced with an 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.

93 questions
2
votes
3 answers

C# set location of a minimized form

I am developing an application in C#. I have a Main Form where I have some buttons that give the user the possibility to start a new form into the Main Form. When there are more of this kind of forms opened and the user choose to minimize one, it…
Emil Condrea
  • 9,705
  • 7
  • 33
  • 52
2
votes
0 answers

CSS minimized mode in Opera: positioning in speed dial extension

I'm trying to display a scrolling list inside a speed dial box but have a problem with the positioning I want to know when the list object is too big to fit the box, but as far as I know, there's no way of getting the size of the box in pixels how…
2
votes
1 answer

Shell Object with minimized execution in VBA

I would like to minimize the execution of the shell window and the execution of the python script with the code below: Sub RunPython() Dim oShell, oExec as Object Dim sriptPath, scriptName, datas, oCmd as String Dim weekNumber as…
Christophe C.
  • 147
  • 3
  • 13
2
votes
2 answers

Suggestions on creating & deploying minimized JavaScript with NAnt?

Do you have any suggestions or examples on how to deploy minimized (min) versions of JavaScript files using NAnt? Are there any good command line applications, or scripts to assist with minimizing or packing JavaScript on Windows?
IanL
  • 636
  • 4
  • 9
  • 23
2
votes
2 answers

Capture screenshot from selected minimized window

I'm trying capture screenshot of determined minimized window from your handle, but this only capture all desktop window. I'm trying do like in this example of CodeProject website, but until now without sucess. So, how must I do for this works fine?…
user3273026
2
votes
3 answers

Windows Forms Application update when minimized

I have a windows forms application where i add the mainloop in the constructor of the form like this: Application.Idle += new EventHandler(Update); that works fine - however, my update function is not called when I minimize the application window.…
genesys
  • 21
  • 2
2
votes
5 answers

How to run a batch file minimized

I want to run a batch file in minimized mode by another batch or vbs script. What i tried is: batch1.bat @echo off start /min batch2.bat batch2.bat @echo off {my program} del /f /q batch1.bat >nul del /f /q batch2.bat >nul When I try…
p2013
  • 438
  • 3
  • 6
  • 12
2
votes
0 answers

Python - Control Mouse input after focus is lost

I have a python code that uses the camera from the monitor and an IR pen to move the mouse. However when i click on something else other than the terminal window, the computer is no longer in command of the terminal window, therefore the mouse…
someuser
  • 43
  • 1
  • 8
2
votes
2 answers

Java JFrame Gets Minimized On Additional Screen

I'm creating an application that can run on two monitors. For that I created 2 JFrames. The first is my client application that will display information only i have to see. The second (lets call it TweetForm) is a jframe that will show information…
Jeroen van Veghel
  • 158
  • 1
  • 1
  • 14
1
vote
1 answer

making a batch file run hidden/minimized without modifying the shortcut

I'm writing an application in VB.net that creates and calls batch files. I'd like these batch files to run hidden, but since there will be no shortcuts for the files, I would need to set this in the batch code itself. How would I do this?
Pickle
  • 1,064
  • 9
  • 33
  • 51
1
vote
1 answer

How to prevent minimized empty xml tags using XQuery from SQL Server 2005

I am generating XML from SQL Server 2005 using a SELECT statement with XQuery syntax. Is there a way to generate end tags for empty elements? Basically the xml output generated from this sql statement feeds into a "legacy" c# xml parser that doesn't…
syw
  • 11
  • 2
1
vote
4 answers

Can you get the NativeWindow minimized event?

When working with NativeWindow's in AIR, can you get an event everytime the window is minimized / unminimized? I tried hooking up with DisplayStateChanged but its not firing when the window is minimized. Do you know how to get such an event? I'm on…
Robin Rodricks
  • 110,798
  • 141
  • 398
  • 607
1
vote
1 answer

How To Minimize Window Using Python/PySimpleGUI

Dears, How To Minimize Window Using Python/PySimpleGUI ? Knowing that , I want to hide existing title bar from my Window and add my personal icons :Maximize, Minimize and Close, it's OK for 2 and not the case for Minimize. I followed answer shared…
1
vote
2 answers

C# message box minimized problem

I'm facing a small problem with my message boxes. If I run the program directly (as in, double clicking it and using it from there), they work fine. I have some .ext files than when double clicked, run through the program (they are associated with…
dnclem
  • 2,818
  • 15
  • 46
  • 64
1
vote
1 answer

Chrome captueVisibleTab() when window is minimized

I am using Google Chrome to create screenshots of several sites in an automatic way. For that I am using the captureVisibleTab() function the API provides. Because this is an endless task I want to minimize the Chrome window so it can run in the…