I want to be able to send the key combination SHIFT + CTRL + . (dot) using the following code:
import win32com.client as comclt
wsh= comclt.Dispatch("WScript.Shell")
wsh.SendKeys()
So far I was able to send CTRL + . (dot) like this :
wsh.SendKeys(^.)
How do I add the SHIFT key there ?
Thanks to anyone who answers :)