Alt-Tab is a keyboard shortcut to switch between applications in graphical environments such as operating system shells.

learn more… | top users | synonyms

0
votes
1answer
131 views

Alt-Tab notification on panels within a form

I'm trying to clear some variable on a panel, for example, if I had a bool which lets me know when I'm click dragging on a panel's surface I set this to false when a MouseUp event occurs (this may or ...
4
votes
1answer
331 views

Alt Tab overlay Win32 identificator

I'm mapping events coming from an external sensor (e.g. a keypad) to keyboard shorcuts and I would like to switch applications using the Fast switch overlay window ( i.e. "Alt-Tab menu") , but I want ...
2
votes
1answer
438 views

(C++/win32) Hide a window so that the user cannot alt-tab or switch to it

I'm currently using ShowWindow( hwnd, SW_HIDE ), but AltTab still seems to be able to switch to it after it's hidden. Is there a way to completely hide a window without destroying it? EDIT: I should ...
2
votes
1answer
311 views

Alt-tab from fullscreen SDL

When I run a fullscreen window (C++ with SDL using the SDL_FULLSCREEN flag), alt-tab has no effect. Researching it, I only found posts of people having problems with it. Is there a way to do it ...
2
votes
2answers
1k views

Switch to last active application like Alt-Tab

ok, I have found many posts on finding a window by name, etc. What I have not found is how to find and switch the window application focus to last active window. The code I am showing below will ...
2
votes
2answers
590 views

show running applications (alt-tab program list)

Found the solution here: http://blogs.msdn.com/b/oldnewthing/archive/2007/10/08/5351207.aspx I'm trying to go a list of running applications, i found on several forums this solution: Process[] ...
1
vote
1answer
750 views

simulate Alt Tab keyboard press in C++ to launch Fast Switch window

I have an idea for a project which needs to be run on a touch screen device. The idea is to have a button on screen which when pressed switches between open projects. So exactly how the ALT + TAB ...
0
votes
1answer
213 views

Show Child Window in Task Switcher

How can I make a modeless child dialog (instantiated using CreateDialogParam) show up in the windows task switcher (Alt-Tab strip)? Using the WS_EX_APPWINDOW window style forces the dialog to have a ...
15
votes
1answer
572 views

SDL OpenlGL Alt-tab in fullscreen has unpredictable results

I am writing a game in C++ using SDL 1.2.14 and the OpenGL bindings included with it. However, if the game is in fullscreen and I Alt-Tab out then back into the game, the results are unpredictable. ...
3
votes
3answers
433 views

Catch system event as Cmd-Tab or Spotlight in a Cocoa App

In a Cocoa App, I'm trying to find a way to catch system events like the app switcher usually launched with Cmd-Tab or spotlight, usually launched by Cmd-Space. I'm looking for either a way to catch ...
0
votes
2answers
510 views

Generic icon displays for my app in the Alt-Tab dialog

I have an old VB6 app and whenever the user does the Alt-Tab thing, the dialog displays a generic icon instead of the application icon. What can I do to display the proper icon in the Alt-Tab window? ...
5
votes
2answers
343 views

How can I prevent Gnome from showing two windows when doing alt-tab? (c++ qt app)

(see edits) I'm developing a QT/c++ application under gnome. The application a main window and QListBox child window. Both of these windows show up as separate main windows when I alt-tab away ...
2
votes
2answers
727 views

App disappears from Win7's ALT-TAB list sometimes

I've been having some trouble with one of my Delphi 2010 projects lately. It seems that sometimes, when I have a form open as a modal dialog, the app stops showing up in the ALT-TAB list until I ...
3
votes
1answer
163 views

alt-tab sort of web design

I am thinking of designing a web site having multiple related services. For every action of the user in a service there will be some computation going on in each of the other services. I want to ...
3
votes
1answer
407 views

Any open source Alt-Tab windows switcher project exists?

Having tried a few Alt-Tab windows switcher, I want to write one to suit my own needs. Are you aware of any open source Alt-Tab windows switchers? If it already exists, I don't want to start from ...
2
votes
1answer
1k views

Win7 WPF Alt+Tab Focus Oddity

After a couple hours of Googling I haven't been able to find any comments on this issue. We have a WindowStyle=None window with transparent background and allows transparency and does not show in ...
0
votes
0answers
96 views

Windows Vista: Is there a way to have the Alt+Tab overlay display on all monitors? [closed]

In Windows Vista, when I press Alt+Tab, the application switcher overlay only shows on the primary monitor (the one with the task bar on it). Is there a way (via control panel, registry setting, ...
32
votes
4answers
5k views

Best practices for Alt-Tab support in a DirectX app?

When writing DirectX applications, obviously it's desirable to support the user suspending the application via Alt-Tab in a way that's fast and error-free. What is the best set of practices for ...
37
votes
13answers
16k views

Best way to hide a window from the Alt-Tab program switcher?

I've been a .NET developer for several years now and this is still one of those things I don't know how to do properly. It's easy to hide a window from the taskbar via a property in both Windows Forms ...