Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
4answers
23k 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 ...
11
votes
2answers
3k 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 ...
7
votes
4answers
4k 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 ...
2
votes
2answers
115 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?
2
votes
1answer
335 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 ...
2
votes
3answers
845 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 ...
1
vote
1answer
66 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 ...
1
vote
1answer
512 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 ...
0
votes
1answer
218 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 ...
0
votes
1answer
462 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 ...
0
votes
2answers
357 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
68 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
2answers
673 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
145 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#