window

Showing a hidden process on Windows?

I got a bit of a problem. Related to my earlier questions about Slipstreamed SP3 vs. patched SP3, we've come to the conclusion that there is an Internet Explorer process being started, instructed to load a simple .html file from the local disk, which contains javascript, which opens up the rest of a larger chat/meeting system. Internet ...

JQuery window width not correct in Chrome

I have created a plugin which i have cut down to the bare bones of a plugin (i.e. no functionality, just the structure) to debug this issue and it still exists. It deals with resizing divs and bases this on the document's width. The problem is that the documents reported width is reduced by 17px from its actual width and thus doesnt si...

Clip a wpf Popup at bounds of a main window

From what I understand, the popup exists within it's own visual tree. However, I've noticed a few properties, Clip and ClipToBounds. What I am wanting to do is Visually clip a popup at the right and bottom edges of a window regardless of the fact that the popup is independent of the bounds of the window. I'm not using XAML, but if somebo...

c# How to change window focus onMouseEnter event

Hi, i have a WPF application that i would like to become the current focused window whenever the mouse cursor moves over it. Currently i have a onMouseEnter event that changes the cursor when the mouse moves over it so i know the system is recognizing that, however what i actually want is for the application itself to become focused as i...

resize a window in Xul

Hi All, Can anyone tell me that how can i resize a window in XUL.I tried resizable but it is not working. ...

how to get focus-follows-mouse over buffers in emacs?

Suppose I have a source file open and I launch a shell. I can hit C-x o to switch between the two buffers. But how can I get it so that when I move the mouse the buffer under the mouse gets focus, just like the "focus follows mouse" option common in window managers? ...

How does the WPF ComboBox disable the window from scrolling or resizing

I am trying to recreate some of the behaviors that occur when the combobox dropdown is open. When this happens, if there is a scrollviewer then scrolling gets ignored. The ability to resize the window is disable. I know that there is a ResizeMode, but the results of changing the mode are visibly jarring to the window. If the window goes ...

Mask all elements of a window/canvas with C#/WPF

Hi, How can I create a mask to cover ALL the elements of a Windows/Canvas (with subcanvas/elements inside)? Thanks in advance EDIT: I want to add more controls/elements/whatever after I create the mask. Is that ok? How? ...

Wait for certain website to be accessed

My objective is to have an event that is triggered when a website is accessed. Now, maybe through the window title, or the text in the window. Or maybe even reading a URL. As of now I am aware of FindWindow (class,title); However all attempts to put this line of code into a loop and it's exit condition being when the window appears hav...

Install Shield 2009 Premier, Uninstall doesn't close the process/gui

My application (developed using C#.net) is open now i uninstall, InstallShield gives message stating the application is already open and whether really want to close the application. Selection 'Ignore' continues uninstall. Some files and the exe of the application are not closed. How to close them by installshield on uninstall. Or there ...

How Can I get all the themes that system support in windows mobile, and select a theme to set as current theme?

Such as in the today settings, It dispalys all the theme that the system supports, how can I make it in programes? ...

How can I set a window's caption on the Java SE platform?

I want my program to change its window's caption in response to various user actions. Does the Java SE platform offer a portable way to change the main window's caption at runtime, or do I have to resort to native API JNI calls? ...

C# - How can I rename a process window that I started?

Is there any way I can rename the window titlebar of an application that I've launched? I.e. if I launched Notepad.exe, I could rename its title bar from "Untitled - Notepad" to "New Notepad Name". ...

How to close the command window of a batch file which was started by another batch file

Hi. I created a perl script which starts another script. But the started script must be closed after it has performed its task. How can I do it? I have tried the EXIT command but i didnt work. Thanks. ...

Finding the window at a point on screen in java

Is there any cross-platform way to figure out which window is at a certain point on the screen? If there is not, what would be the equivalent function to getWindowAtPoint for linux (X11?) and OS X? ...

Not sure why UIView is being nudged up by around 10px

Hi, I've created a simple iPhone app which has two .xib files. In the app delegate at application did finish launching I display the first .xib file by calling: [window addSubview:myView]; and I do the same on an IBAction for a UIButton to change the view to myView2. What I'm finding is that there's a white bar of around 10 pixels wh...

Is there a way to detect if a browser window is not currently active?

I have JavaScript that is doing activity periodically. When the user is not looking at the site (i.e., the window or tab does not have focus), it'd be nice to not run. Is there a way to do this using JavaScript? My reference point: GMail Chat plays a sound if the window you're using isn't active. ...

Change window transparency in PyGame.

I want to change the transparency of a PyGame window. I don't nessicarly need to do this from PyGame as I already have an Python extension called wm_ext which controls the window which PyGame creates (it also initalizes PyGame). So, with this extension, I've got the window handle, I just need to know how to change the window transparen...

deleting a window property in IE

Hi, I can't find any information on this issue; why doesn't the following code work in IE? window.x = 45; delete window.x; // or delete window['x']; IE reports an "object doesn't support this action" error. Does it have anything to do with that iterating over window properties in IE issue? Thanks and best regards ...

C++ OpenGL Window and Context creation framework / library

I'm searching for an multi platform OpenGL framework that abstracts the creation of windows and gl contexts in C++. I'd like to have an OO representation of Window, Context & co where i can instantiate a Window, create a Context and maybe later set the window to fullscreen. I'm thinking about implementing this myself for xgl, wgl and ag...