SendInput_() disable SHIFT [Resolved]
Posted: Wed Jan 25, 2023 12:33 pm
Hello at all
Is it possible to write something in the parameters (wScan, dwFlags, etc ..) of SendInput_() for not use the SHIFT even if SHIFT is pressed or i must use a hook ?
Have a good day
Is it possible to write something in the parameters (wScan, dwFlags, etc ..) of SendInput_() for not use the SHIFT even if SHIFT is pressed or i must use a hook ?
Code: Select all
Structure INPUT_DATA
type.l
StructureUnion
mi.MOUSEINPUT
ki.KEYBDINPUT
hi.HARDWAREINPUT
EndStructureUnion
EndStructure
Delay(2000)
Define InputData.INPUT_DATA
Inputdata\type = #INPUT_KEYBOARD
inputdata\ki\wVk = 70 ; f
inputdata\ki\wScan = 34 ; f
SendInput_(1, InputData, SizeOf(INPUT_DATA))

