window

How can I programmatically determine if an application is flashing in the taskbar

I can use "FlashWindowEx" to make a window flash in the taskbar, but what can I call to determine if that has been done to a window? Is there a flag that gets set somewhere that I can query? ...

Gwt-ext window positioning

How do I make an instance of gwtext.client.widgets.Window appear at specific DIV in my html ? I tried window.anchorTo(DOM.getElementById("Some_Div"),"left", new int[]{0,0}), thinking the window will anchor itself to div id="Some_Div" in my html. it didnt. ...

Drift when restoring window location and size in WPF

I am using the code below to save and restore the window position and size upon restart. I am observing an upward drift of 28 pixels everytime I execute this code! Am I reading the wrong values, or am I restoring them incorrectly? Where is the number 28 (size of the chrome?) coming from (and how would I account for it programmaticall...

SDL Window Close Problem

I am experimenting SDL Events and i came into a problem. For some reason, I am unable to press the "X" or close bottom on the top right of the window application. Now I am currently unsure if that is related to the SDL coding, or it's a problem of window browser. Does anyone know if it's either a SDL problem or a Window problem? ...

How to create a pop-up window (the good kind)

I need to make a pop-up window for users to log-in to my website from other websites. I need to use a pop-up window to show the user the address bar so that they know it is a secure login, and not a spoof. For example, if I used a floating iframe, websites could spoof my login window and record the user's login information. Thanks Ad...

I need Help Making my VB 2008 Express Web Browser

Every time i click on a link it opens in internet explorer but i want it to open in another window of my web browser Details : i have made a tabbed web browser using a tab control because every where else i have looked is just for a normal web browser please help. ...

Tool that resizes .NET winform to resolution

Is there a freeware tool that can resize a .NET winform window on a running application to a specific resolution? If I'm running on a large resolution and want to see what a window looks like at a specific resolution, this tool should resize a single window to that resolution. I use to have something like this but not sure what the nam...

C#: Get list of open windows form instance that are excuted from different assembly.

I have a 'loader app' that loads a menu and when user clicks the menu image button a list view opens based on the text (if text = employee) (Go to class A) (Go to class B) ... ... (Show List View Window) if he clicks again on the same button it opens again, I would like to prevent this.Any ideas? i.e but this for a WPF...

Why doesn't my Perl curses window work?

This might be a problem with my understanding with Curses more than with Perl, but please help me out. I'm using Curses.pm which works quite well except when I try to create a curses "window". Example code: use Curses; initscr; $w=newwin(1,1,40,40); $w->addstr(20,20,"Hello"); $w->refresh; refresh; endwin; outputs nothing. Not using a ...

output window to file (visual studio 2005)

in visual studio 2005 how can i save whats written to the out put window to file (i cant change the code writing to the output window and it writes a lot i just want to save the output window content to file) thank you Arik ...

message window c++ win32 class/example

Hello, would anyone know of a class/example application for a message only window that is in c++ win32? Thank you Micheal Weller! I took the code for a standard window in c++ and commented out the show window and it works like a charm! Thanks again! ...

How to create a compeletely transparent window with MFC?

I want to create a completely transparent window with MFC, but I don't know how to do this. Can you tell me the way? Thank you very much! ...

Create Window larger than desktop (display resolution)

I need to resize a window larger than screen resolution or size of desktop, programmatically & preferably also manually. Since MS-Windows XP/Vista disallows a window size larger than screen, does anybody have any ideas to work around this limitation? I trying to make pan effect on a laptop to give me more space to work. An older laptop...

Seeing the windows of a process running as System account or as a service

Suppose you have a process which run as as service as the System Account, is it possible to view the content of the windows created by the processes created by the service. Suppose for example, that you have a service running as a kind of wrapper which starts Excel. ...

Can two processes render to one OpenGL canvas ?

Hi, I have three different processes running on the same machine. One of them owns an OpenGL window. I would like the other two to be able to render (quickly) to different rectangular portions of the OpenGL window. If I can guarantee that they will nicely take turns executing OpenGL commands, is this possible? Many thanks Hugo Elias...

What is the best way to determine if a window is actually visible in WPF

I'm trying to toggle the display of a small window based on the click of a notify icon in a system tray app. This is simple enough to implement, however when the small window is displayed and another application takes focus and therefore moves in front of it (z-order) I want the toggle to assume that the small window is now hidden, even ...

How do you get window.open to work in internet explorer 7?

I've been trying for the past 3 hours to get my svg web site to open popups, and all I ever get is "Permission Denied" errors in internet explorer. I've tried everything I could find on google, and nothing works. I've even gone to the point of just calling window.open() blank with no parameters, and still get a permission denied error. W...

Commandering GTKWindow

Is there a way to easily to have child GTK applications start in a GtkWindow of the parent's application choice? Or would this require changing the Gtk libraries? ...

Close a split window in Vim without resizing other windows

If I have a Vim window open with 2 splits in it (3 total buffers visible) and I've adjusted the viewport of each split, then I close one buffer, the other two buffer's viewport's are automatically resized. Is there a way to maintain or at least better scale the split when I close a buffer? 1) Vim window with three splits, custom size: ...

Win32 window Owner vs window Parent?

In Win32 programming, what is the difference between a window's parent and a window's owner? I thought I had it figured out, then I came across this code: SetWindowLong(handle, GWL_HWNDPARENT, foo); This actually sets the window's owner, not the parent - despite the GWL_HWNDPARENT being used. Are the terms parent/owner interchangeable...