Hi there,
I was wondering if this is a bug at my end (probably) or if this is a
genuine limitation of windows in general. I've been attempting to bind a
keystroke to the control of control, shift, semicolon using
self.RegisterHotKey.
It returns True, however it doesn't actually do anything once pressed,
this is the same for if I bind it to anything from 0 to 9, or any
symbol, but letters work fine.
My bind statement is:
self.RegisterHotKey(self.kid, self.mods, self.semicolon)
Where self.kid is wx.Window.NewControlId(),
Where self.mods works fine because it works with letters,
and self.semicolon is 0x3b taken from
https://docs.microsoft.com/en-us/windows/win32/inputdev/virtual-key-codes
Thanks for any advice in advance,
Nathan