Perform ALT+TAB to switch active program on a remote computer

VB-Audio Network Protocol and applications
Post Reply
Jubis_1963
Posts: 9
Joined: Sat May 02, 2020 7:49 am

Perform ALT+TAB to switch active program on a remote computer

Post by Jubis_1963 »

Hello everybody

I need help to perform an ALT+TAB command on a remote computer, The ALT key would the to be pressed and a 2nd button would perform the switch until the TAB key is OFF.

I've been trying and I managed to get the alt+tab done but I can't just perform the tab to switch the app.

The ALT down is done this way
Untitled.png
Untitled.png (33.97 KiB) Viewed 20662 times
And the

TAB is done like this:

Thanks
Untitled 2.png
Untitled 2.png (33.2 KiB) Viewed 20662 times
Is it possible?
Vincent Burel
Site Admin
Posts: 2024
Joined: Sun Jan 17, 2010 12:01 pm

Re: Perform ALT+TAB to switch active program on a remote computer

Post by Vincent Burel »

you may use
System.KeyDown("ALT+TAB"); instead no ?
and of course
System.KeyUp("ALT+TAB"); in button OFF script
Jubis_1963
Posts: 9
Joined: Sat May 02, 2020 7:49 am

Re: Perform ALT+TAB to switch active program on a remote computer

Post by Jubis_1963 »

I tried, ALT+TAB open the ALT+TAB windows app switch but then I need to press another tab to switch the selected App, the problem is that second tab.

I do System.KeyDown("ALT+TAB"); in a 2 positions button type to open the ALT TAB menu but how do I manage to do the TAB to switch the app?

I tried programming another button with either System.KeyDown("TAB"); or System.KeyPress("TAB"); but neither works!
Post Reply