Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个 Windows 我必须切换它们
我尝试了以下代码但没有用,这里我尝试简单地按下键盘按钮 ALT+TAB 但不起作用:
Send("! {TAB}")
或者
Send("ALT} {TAB}")
最好的方法是每次需要时使用 WinActivate 激活每个窗口。这比使用 Send("!{TAB}") 更安全。
赢激活
您在发送命令中有一个空格。所以你发送:Alt+Space+TAB。所以它有效:
Send("!{TAB}")