A minimized object is one that has been replaced with an object that can restore the original when selected.
0
votes
1answer
32 views
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 ...
0
votes
1answer
69 views
simple auto clicker no-focus
heres the thing, im trying to find a way to make a simple bot that clicks on 4 positions in a minimized window without having to have focus on it.
this is what i got till now.
#include ...
0
votes
1answer
136 views
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 ...
-1
votes
1answer
24 views
How to execute a program without Interface [closed]
I'm trying to execute a Chrome's process, but I want to execute it silenced.
The default patch is this:
"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --app=http://google.com ...
0
votes
1answer
68 views
jsbuild example for openlayers + ext + geoext
I've found some info about jsbuild used with openlayers, I tried them but I'm still getting undefined errors in firebug, I think this is because I haven't written the right JS files inside my cfg ...
2
votes
0answers
153 views
How to display local notification when PhoneGap application is minimized
I have a PhoneGap application where I am using Background Service, PhoneListner and CallLog plugins for Android. So when even there is an incoming/outgoing call ends, my application shows the ...
1
vote
0answers
76 views
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 ...
2
votes
2answers
138 views
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 ...
-1
votes
1answer
183 views
Autohotkey: Restore window that is automatically minimized to taskbar [closed]
When I am playing poker there is a lobby window where you see which games are going on and if you open a table it pops up in a new window. However when I open a new table the lobby window is ...
1
vote
1answer
361 views
Send hotkey to minimized chrome window
I need an autohotkey script that can send alt+backspace to a minimized chrome window (without maximizing it).
Basically, I have a web player app I've made and on the player window which opens in a ...
4
votes
4answers
2k views
Launching Acrobat Reader 10.0 from C#: how to minimize?
I am launching Reader 10.0 to send a PDF file to a printer from a C# program on a Win 7 system. Here's what I am doing now:
startInfo.FileName = adobeReaderPath;
string args = String.Format("/t ...
0
votes
1answer
940 views
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 ...
1
vote
1answer
160 views
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 ...
2
votes
3answers
687 views
Show a progressbar in taskbar while form is minimized
I wonder how can i accomplish the following:
I would like to display the progress of a progressbar on the taskbar while my window is minimized. See here for a visual description.
See how the icon on ...
1
vote
4answers
688 views
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 ...
3
votes
3answers
2k views
AutoHotkey background clicking and typing
I'm trying to use AutoHotkey to do some background clicking and typing while I'm doing other stuff in the foreground.
I've gotten used to Send but I haven't figured out how ControlSend works yet. ...
1
vote
2answers
377 views
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, ...
1
vote
2answers
448 views
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 ...
1
vote
1answer
183 views
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 ...
0
votes
4answers
367 views
How to edit minimized jQuery plugin file?
I want to edit supersized.3.1.3.core.min.js file.
Here's the code (placed here temporarily):
(function(a){a(document).ready(function(){a("body").prepend('<div ...
1
vote
0answers
293 views
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 ...
3
votes
1answer
6k views
preserve positioning of html page when window minimized
i have a problem with my page. whenever i minimize the window all the positioning of elements goes off and things get distorted. please help me
0
votes
1answer
581 views
Simulate input in own application without focus?
I was wondering if it is possible to simulate input in your own application without the window being focused or the window minimized, kind of like with PostMessage or SendMessage but without those ...
0
votes
4answers
4k views
C# Run application MINIMIZED at windows startup
I got the following code to run the application at windows startup:
private void SetStartup(string AppName, bool enable)
{
string runKey = ...
2
votes
2answers
3k views
WPF: Window stays minimized even when setting WindowState explicitly
My application has a tray icon which, when double-clicked, hides or shows the application window. My issue is that I can't seem to bring the window to the foreground if it was in a minimized state ...
3
votes
2answers
584 views
.NET Timer controls run faster while the window is minimized
It's actually a noticeable difference that I've seen but cannot explain. These timers have intervals set to 1ms (the lowest available), but while it's minimized, it seems to tick faster? Could anyone ...
-1
votes
1answer
986 views
Blinking minimized browser
when my single IE instance is opened then minimized browser is blinking but while setting task bar property "Group similar task bar button" and if multiple IE instances opened then blinking is not ...
0
votes
3answers
1k views
c# how to FormWindowState.Normal
greetings,
i have this code:
private void aboutToolStripMenuItem_Click(object sender, EventArgs e)
{
this.WindowState = FormWindowState.Minimized;
about About = new about();
...
2
votes
3answers
988 views
C# 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 ...
6
votes
2answers
4k views
Sending messages to a Flash game with C# and AutoIt
I'm making a bot for a Flash game, and I've figured out how to import all the AutoIt functions into my C# code.
string title = "Minesweeper";
string full = auto.WinGetTitle(title,"");
string handle = ...
2
votes
2answers
137 views
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 ...