The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
158 views

How to get name of active window?

I've confronted with problem of getting active window's name. When I use this code: HWND currentWindowHWND = GetForegroundWindow(); char title[100]; GetWindowTextA(currentWindowHWND, title, 100); ...
1
vote
0answers
246 views

Active window screenshot using javascript code?

I am trying to get a snapshot of desktop application(developed in html5+javascript) .I know in java I can take the screenshot of active window.But is there any way /scripts using which I can take ...
1
vote
2answers
474 views

Obtain Active window using Python

I would like to get the active window on the screen using python. For example, the management interface of the router where you enter the username and password as admin That admin interface is what ...
1
vote
1answer
168 views

How to be notified when Internet Explorer gets focus

I'm working on a project in which I want my program to be notified when Internet Explorer gets focus or when navigating through tabs. To be clearer when an instance of IE gets focus or the user ...
0
votes
1answer
523 views

GetActiveWindow() not always returning the active window?

I'm making a game that makes use of Control.MouseButtons and GetActiveWindow() like so: Private Declare Auto Function GetActiveWindow Lib "user32.dll" () As IntPtr Public Sub ...
2
votes
2answers
251 views

How can I determine if the OpenGL window is the active window?

How can I determine if the OpenGL window is the active window?
0
votes
1answer
989 views

Screenshot of the active window…? (based on Window Title)

How can we take the screenshot of the active window...? (based on Window Title) IN c# GUI windows Application plz help..help.. help plz tell all programm with details and step by step i am the ...
2
votes
1answer
632 views

WebBrowser control on tab making main window inactive

I've got a Visual Studio 2008 .NET 2.0 WinForms app that contains a WebBrowser control on one of the TabPages of its main TabControl. This WebBrowser is only used to display a PDF file that's ...
0
votes
2answers
899 views

C++, MFC Feature Pack,Mdi childs visibility

I have an MDI MFC FEATURE PACK app in vs2008. I do need to determine what child window(s) are visible , even if multiple tab groups are created by the user, and also what is the last activated MDI ...
0
votes
1answer
114 views

How can detect that the flash movie projector is active window

How can detect that the flash movie projector is active window
0
votes
1answer
200 views

how to keep more than one window active(don't use popup)?

i want to simulate the qt popup window that one window popup and both two windows keep active,don't use Popup, how to do it?
0
votes
2answers
1k views

Send key to active window

Hey. I don't know if this is possible, but worth a shot. Say there's a third party racing game which doesn't use the mouse. Is there a way for me to create a Windows Form app which listens for mouse ...
0
votes
1answer
312 views

How can I track when a window is beeing activated and deactivadet?

I am making an taskbar and I need to know when the active window is changed. I don't want to use a timer. I'm thinking that maybe there is a WndProc message I can intercept. I'm using C#
1
vote
1answer
831 views

How to get the name of global active window using Java?

I am work an Desktop Application in which i need to save the name of corrently focused or active window name(mozilla firefox, or any other file name) in an text file currently I am using ...
8
votes
6answers
8k views

Get current active window's title in Java

I am trying to write a Java program that logs what application I'm using every 5 seconds (this is a time tracker app). I need some way to find out what the current active window is. I found ...
48
votes
7answers
59k views

C# - Capture screenshot of active window

I am making a screen capturing application and everything is going fine. All I need to do is capture the active window and take a screenshot of this active window. Does anyone know how I can do ...
14
votes
2answers
5k views

Show window in Qt without stealing focus

I'm using the Qt library to show a slideshow on the second monitor when the user isn't using the second monitor. An example is the user playing a game in the first monitor and showing the slideshow in ...
2
votes
3answers
2k views

Determine Whether Program is the Active Window in .NET

I have a C#/.NET app and I want to implement the following behavior: I have a popup menu. Whenever the user clicks on anything within the application that is not the popup menu, I want the popup ...