I\'m looking to create a C# application that changes content according to which application currently has focus. So if the user is using Firefox, my app would know that. Sam
Take a look at Application.AddMessageFilter, and look for WM_ACTIVATEAPP messages, which will tell you when an app is activated, i.e. receives focus.