joe2017
Goto Top

Powershell Window Form Sendkey

Hallo zusammen,

ich wollte eben mittels eines Window Form Sendkey button zwischen diversen Applikationen wechseln.
Ich habe bereits folgendes versucht. Leider klappt das mit dem TAB nicht.
[System.Windows.Form.Sendkeys]::SendWait("%{TAB}")  
[System.Windows.Form.Sendkeys]::SendWait("%{TAB}{TAB}")  
[System.Windows.Form.Sendkeys]::SendWait("%{TAB}{RIGHT}{RIGHT}")  

Hat jemand eine Idee wie ich das noch bewerkstelligen kann?

Content-Key: 1287875519

Url: https://administrator.de/contentid/1287875519

Printed on: April 20, 2024 at 03:04 o'clock

Member: joe2017
joe2017 Sep 21, 2021 at 10:48:14 (UTC)
Goto Top
Gibt es evtl. eine "ALT HOLD" funktion?
Member: joe2017
Solution joe2017 Sep 21, 2021 at 10:50:28 (UTC)
Goto Top
Ich habe es hinbekommen.

[System.Windows.Form.Sendkeys]::SendWait("^%{TAB}")  

Trotzdem Danke face-smile