Hi
I don't consider Ctrl + F6 (switch to next window, like Ctrl + Tab in Excel) to be a one hand operation. A shortcut that requires two hands is not a good shortcut.
Is it possible to move the Ctrl + F6 to another button? My guess is no but I'm asking anyway, just in case.
In that case I need help with a macro that mimicks the Ctrl + F6 behaviour. I tried and I got this far:
Sub ActivateNextWindow()
On Error GoTo ER
ActiveWindow.Next.Activate
Exit Sub
ER:
Windows(1).Activate
End Sub
It works as long as a window is not minimized. I like to think that I could figure this out on my own by the end of the day (and possibly night). I also like to believe that there is someone here on the forum that can have this code working in no time.
Bookmarks