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

Is it possible for my application to minimize a task running in the background like the in-call minimzed system tray in Windows Phone?

I'm not really sure if it is a control or something which is exclusive to VoIP / Call Applications but I would like to be able to run a task in the background and display the progress minimized to the system tray just like an active call minimizes…
user1705923
0
votes
0 answers

OpenCV windows always minimized on Linux

i have a problem with OpenCV in Python2 on Linux. Whenever i open up a window, it starts minimized. Is there any easy way to force the window to start on top? my code: import cv2 video = cv2.VideoCapture(0) ret, pic =…
karlosss
  • 2,816
  • 7
  • 26
  • 42
0
votes
3 answers

How can you manipulate a minimized attribute value in HTML

I was wondering, since HTML5 brings a lot of minimized attributes to the table (and older HTML as well has those), for example autocomplete, another way of writing which could also be autocomplete="autocomplete" for XHTML, and the full version of…
Arno
  • 356
  • 5
  • 18
0
votes
1 answer

iOS7 home screen web app minimized shows a blank white screen

I have a web app saved to homescreen in iOS7. While its open and running, if i double tap the "home" button on the phone, the minimized display correctly shows a screen capture of the apps current state. However when switching to another app and…
dsrupt
  • 55
  • 7
0
votes
3 answers

Minimize to system tray

i was following the instruction on page but then, there's no icon attached for the application, so after the form is hidden, i cannot reshow the form, since there's no icon on the system tray, how do i resolve this ? here is my code private void…
Cignitor
  • 891
  • 3
  • 16
  • 36
0
votes
1 answer

Stop one function in jQuery and run another

I am trying to create a minimize effect on a div that pops up when the page is scrolled down. Everything is fine, just one problem. If the minimize function is complete and I scroll the page up, it restores its original value. I want it in a way…
SarmadK
  • 123
  • 1
  • 2
  • 14
0
votes
1 answer

How could I refresh a line chart after the form has been minimized?

In Visual C#, I built a component(not a user control) to draw a data line chart to display datas coming from socket. I put the drawing codes in the Paint event, so I called Invalidate after a new data pack comes. But when the form is minimized, it…
Chenglin You
  • 13
  • 1
  • 5
0
votes
2 answers

Why does putting [STAThread] on Program.Main in XNA game with slow FPS prevents restoring on minimize?

The symptom I'm trying to resolve is that my XNA application will not restore some of the time after being being minimized. I click the minimize button, but when I click on my application's entry in the task bar, the application does not resume -…
Victor Chelaru
  • 4,491
  • 3
  • 35
  • 49
0
votes
1 answer

Call a Function although the form is Minimized or Unselected on KeyDown in VB.NET

Well I have this code: Public Sub FuncKeysModule(ByVal value As Keys) 'Check what function key is in a pressed state, and then perform the corresponding action. Select Case value Case Keys.F8 spam.Enabled = True …
Seazoux
  • 621
  • 1
  • 5
  • 28
0
votes
1 answer

Java: "Screenshot" of a minimized window?

I'm currently writing a script that works inside of a game client, and I want to add screenshot capability to my script. I'm using Robot now, but I would like to be able to take a screenshot of the client even if it is minimized. Is there any way of…
0
votes
1 answer

ShellExecute runs 'administrator required' application minimized

I have a line of code that opens an administrator required application that requires you to click 'OK' to the consent box that pops up. ShellExecute(Me.Handle, "open", "c:\myapp.exe", "", "", 5) However when it runs the application, the consent box…
user2444615
  • 41
  • 1
  • 7
0
votes
1 answer

How do i stop the cmd window appearing on my desktop as i have made a delay startup batch file?

This is my .bat. All is working fine, except i see the black window on my screen while the countdown is taking place... @echo off timeout /nobreak /t 8 > nul start /d "C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Skype\" Skype.lnk exit Ps:…
Eddy
  • 1
  • 1
0
votes
1 answer

BB10 cascades c++, How to know app is running in background?

I am working in one BB10 Cascades app, QML and C++, i want to run one scheduled task in background thread, when user minimized the app(show only thumnail in desktop now, but not quit the app). How can know the app is running in background now? I…
-1
votes
2 answers

Minimizing window issue in Qt 5.15

Window { id: mainWindow width: 960 height: 600 flags: Qt.FramelessWindowHint | Qt.WindowMinimizeButtonHint | Qt.Window Rectangle { width: 15 height: 15 anchors { top: parent.top …
Valeriia
  • 586
  • 2
  • 4
  • 21
-1
votes
1 answer

How does Minimize(Hide) Just a Specific Activity , Not Whole Application

I am developing an application that user can minimize (hide) resumed activity (but not all the application) by pushing to a button and previous one will be showed. Then, in any activity, by pushing another button, user can see the minimized (hidden)…
Burak Gur
  • 9
  • 3