minimized

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? ...

sending messages to a flash game with C# / 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 = auto.WinGetHandle(full, ""); if (auto.WinExists(full, "") == 1) textBox1.Text = "window exists"...

C# Windows Forms Application update when minimized

Hi! 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. What do I need to do in order to get my update function called also while the...

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(); About.ShowDialog(); } it minimizes the parent window state to minimized and displays a splash form. my question is when the ...

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 working. i have written follwoing code for this.. Response.Write("<script language='javascript'>"); Response.Write("var oldTitle = document....

.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 explain this phenomenon to me? And if possible, explain how to reproduce the effect while the window is maximized? ...

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 when it was hidden. For instance, say the user minimizes the application and then double-clicks the tray icon. The application window is then...