window

How can I install adobe flash on my Windows Mobile 6.5 phone?

I have an htc Imagio. I cannot seem to find a Flash Player for it. Does anyone know how to get Flash to install on a Windows Mobile 6.5 phone? ...

Fullscreen Window in Windows - Remove Border?

Many Windows applications (games, web browsers, some editors, etc.) support fullscreen mode, in which the application's client area covers the entire screen. As a Win32 developer, I have always implemented full-screen by removing the window's frames and title bar, and setting the window's position to (top, left, width, height) = (0, 0...

rad window is not opening after exporting a report to excel using report viewer

rad window is not opening after exporting a report to excel using report viewer ...

Floating window wpf

Hello I want to create floating child window in my application. It should be look like floating bin in internet market. Window.ShowDialog is not well because user hasnt access to main window. Window with topmost = true as well bad idea because i want to have floating window only in limited area of main window. ...

What kinds of job scheduler framework or solution do you recomend on window server system

Hi Guys My Company is running a lots of batch jobs to process data for partners. We used to use sql server agent to execute batch process. I found it's very difficult to get batch process information like log or status when i working on sql server's agent. So I'd like to change my company's job scheduling process to another stable sol...

WPF refresh after message box closed in vb.net

I have two message boxes one after another. Dim msgResult as MessageBoxResult msgResult = MessageBox.Show("Message", "Title", MessageBoxButton.YesNo, MessageBoxImage.Question) if mesgResult = MessageBoxresult.Yes Then 'some code..... MessageBox.Show("Another message", "Title", MessageBoxButton.OK, MessageBoxImage.Error) End if Wh...

Visual Studio Express - console window as a tab

Hello, I wonder, if there is a way to make VS C++ Express console window appear as tab, like 'Output' or 'Code Definition Window', rather than new window (the same way like Eclipse does). Any IDE settings or plugin? Thanks in advance, Regards, Pawel (PL) ...

WPF Window : sizechanged event fires twice

I have a WPF Window loaded. But on event of sizeChanged, it fires twice. May I know why? Also, I have tried adding 'e.handled = true' ...

Insert a Script into a iFrame's Header, without clearing out the body of the iFrame

Hello, I'm looking to add a script to an iFrame's header while not losing everything contained in the iFrame's body or header... here is what I have right now which does update the iFrame with the new script, but it cleans everything in the iframe out, not appends which is what I'd like. thxs! B // Find the iFrame var iframe =...

Excluding clicks within a DIV from a window.onbeforeunload

Given the following function: window.onbeforeunload= function() { if (CKEDITOR.instances.stuff.getData().length > 0 && oktoquit == false) { return "You have unsaved changes. Click Cancel now, then 'Save' to save them. Click OK now to discard them."; } }; I'd like a way to exclude this function from running if the user ...

How is "Esc" key handled in WPF Window?

I want the Escape key to close my WPF window. However if there is a control that can consume that Escape key, I don't want to close the Window. There are multiple solutions on how to close the WPF Window when ESC key is pressed. eg. http://stackoverflow.com/questions/419596/how-does-the-wpf-button-iscancel-property-work However this sol...

WindowStartupLocation.CenterScreen is opening my window on the wrong display

According to the documentation, CenterScreen should open the window in the center of the screen that contains the mouse cursor, however this is not happening. I have a dual monitor setup, with my secondary monitor appearing to the left of my primary monitor (the one with the task bar). When the user clicks a link in my interface on the ...

Javascript to Get Address Bar Value

Hi everyone, Does anyone know how to (or if it is possible) to get the address bar value after a user tries to navigate to another page from my site? To be clear, I'm not looking for the value stored in window.location (since this is the page that the user will currently be on), but rather the site that the user is trying to navigate...

How to write JavaScript to a separate window?

I have opened a new window with JavaScript: var newwin = window.open('','preview','width=600,height=500'); Now I want to write some JavaScript to the window: newwin.document.write("<script type='text/javascript'>alert('Hi!');<" + "/script>"); newwin.document.close(); However, the script never gets executed. Am I doing something wro...

Bring opera window to front!

Hi! Could you please help me to figure out how to bring Opera's window to front, using class name?! I use the following procedure to bring other applications to front and it works fine. I need to use only a class name and not window's caption. If I use window caption instead, the procedure works. Here is the procedure: procedure Switch...

IE won't load PDF in a window created with window.open

Here's the problem, which only occurs in Internet Explorer (IE). I have a page that has links to several different types of files. Links from these files execute a Javascript function that opens a new window and loads the specific file. This works great, unless the file I need to open in the new window is a PDF in which case the windo...

Hhow to scroll without dragging in flex?

HI I have a collapsable Title window that has scroll bars on it. When i try to scroll by clicking and dragging the scrollbar, the entire window moves. How can i stop this?.... Thanks ...

Custom Windows GUI library

I always wondered how software such as iTunes, Winamp etc is able to create its own UI. How is this accomplished under the Windows platform? Is there any code on the web explaining how one would create their own custom GUI? ...

Javascript: window.onload problem

This isn't working in IE (although it does work in FFX). Why? Using HTML in the header: <script type="application/javascript"> // And finally, let's call the code ourselves. window.onload = lbp.init; </script> And then the script: // lbp is the script's universal variable, which retains everything var lbp = {}; // The se...

WPF Application Maximize Problem

How to set the Height and width of a WPF application on maximise? Problem I face is because of variable height of the windows taskbar in different computers Presently, I am doing it like this. Please suggest any better technique if (this.WindowState == WindowState.Maximized) { this.Height = primaryScreenHeig...