Questions tagged [alt-tab]

Alt-Tab is the common name for a keyboard shortcut that has been in Microsoft Windows since Windows 3.0. This shortcut switches between top-level windows without using the mouse; hence it was named Task Switcher.

Alt-Tab is the common name for a keyboard shortcut that has been in Microsoft Windows since Windows 3.0. This shortcut switches between top-level windows without using the mouse; hence it was named Task Switcher (Flip in Windows Vista).

Perhaps the most common use of Alt-Tab is to alternate between the two most recent tasks, but it can also be used to switch to any running program that has a top-level window.

The window environment maintains a Z-order list of top-level windows (tasks) with the most recently used tasks at the front, so the most recently used tasks can be switched to the most quickly.

55 questions
1
vote
0 answers

How do I find all open windows on windows 8 in C#

I am trying to make a Windows 8 Alt-Tab replacement type program in C# to handle a few windows automation tasks such as moving an open window from one screen to another and am struggling to find a good solution to get a list of all the open windows,…
1
vote
2 answers

Simulating Alt + Tab Key Press

I have tried to simulate Alt + Tab key press using SendInput, keybd_event, SendMessage and SendKeys.Send but none of them work. All other key presses work but only Alt + Tab doesn't work. Can anyone tell me how do I open the Alt + Tab Task Switcher…
Elmo
  • 6,409
  • 16
  • 72
  • 140
0
votes
1 answer

How can a macOS command line app that launches a GUI also have an icon participate in the Alt-Tab functionality?

I'm experimenting with some low(ish) level macOS coding for fun and curiosity. I've been able to create a commandline app that can conditionally also launch a GUI with a window or two. (I'm sure other GUI app functionality is missing too.) But…
hippietrail
  • 15,848
  • 18
  • 99
  • 158
0
votes
1 answer

Input Option upon release of Cmd+Tab

When using the application switcher triggered by Cmd+Tab, selecting an application does not necessarily bring forward the window of that application. One can however use the Option key. Then, when releasing Cmd+Tab, the window will be brought…
0
votes
1 answer

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 taskbar icon but not in the task switcher.
shadeMe
  • 706
  • 1
  • 10
  • 30
0
votes
1 answer

Space+Tab triggers AltTab and outputs Space

This Autohotkey script works great as a remap for Alt+Tab. However, I've noticed that it also still outputs a Space the moment Tab is pressed down (with Space still held down). This typically is not a problem except when moving out of applications…
0
votes
0 answers

Is it possible to program a custom dialog/pop-up for Alt+Tab switcher for Win 10?

I saw this post by Raymond Chen: https://stackoverflow.com/a/12865402/257299 The title says it all: Is it possible to program a custom dialog/pop-up for Alt+Tab switcher on Win 10? Example: Can I trap EVENT_SYSTEM_SWITCHSTART, then show my custom…
kevinarpe
  • 20,319
  • 26
  • 127
  • 154
0
votes
0 answers

How to remove an application from ALT + TAB?

I have an app which is supposed to be hidden. To hide it from the Taskbar I use: procedure TForm1.CreateParams(var Params: TCreateParams); begin inherited; Params.ExStyle := Params.ExStyle and not WS_EX_APPWINDOW; Params.WndParent :=…
Codex
  • 101
  • 1
  • 11
0
votes
1 answer

Creating Barcode to "Alt+Tab" and switching windows application, and Enter Key

I would like to ask for some help with firstly how to define the windows keys "Alt+Tab" and "Enter" key when using an online barcode generator like https://barcode.tec-it.com/en. Alternatively, if there isn't a way to define the keyboard commands,…
0
votes
1 answer

How to cycle between open and closed firefox windows?

Trying to cycle between multiple open or closed Firefox windows fast instead of cycling through the virtual display with alt tab. Whats the quickest way/shortcuts?
0
votes
1 answer

Can I disable autocomplete with Alt+Tab on Qt Creator under Linux?

For the most part I very much like Qt Creator, but a few projects I'm working on require me to switch between my editor and my web browser for reference. Qt Creator is currently interpreting Alt+Tab to autocomplete, and then switching my window…
Michael Macha
  • 1,729
  • 1
  • 16
  • 25
0
votes
3 answers

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?
AngryHacker
  • 59,598
  • 102
  • 325
  • 594
0
votes
2 answers

How to detect if SetForegroundWindow changes screen resolution?

I am writing an Alt+Tab replacement in C#, and have trouble with fullscreen applications. Is there a way to detect if a SetForegroundWindow(hWnd) call is going to change the screen resolution? Or equivalently, if hWnd is a fullscreen application? I…
Frigo
  • 1,709
  • 1
  • 14
  • 32
0
votes
1 answer

In Ubuntu, alt-tabbing to switch window doesn't open it even though window appears in task switcher

I try using Alt-Tab to switch to another window, and can see the window in Alt-Tab task switcher, but when I select it, it doesn't open. This happens to me for example with the Text Editor and also the File Manager, and has happened multiple times.
0
votes
0 answers

Editing program to not show up when Alt-Tab

Lately, I've been letting myself get annoyed by a program called SCM. It is a program that is necessary to make some of the buttons on my laptop work and it also works as a sort of quick settings overlay when you click on the icon in the…