What does KEYEVENTF_SILENT equate to
Posted
by Vaccano
on Stack Overflow
See other posts from Stack Overflow
or by Vaccano
Published on 2010-05-25T20:04:18Z
Indexed on
2010/05/25
20:11 UTC
Read the original article
Hit count: 179
KEYEVENTF_SILENT is a constant used in calls like this one:
keybd_event(VK_OFF, 0, KEYEVENTF_SILENT, 0);
keybd_event(VK_OFF, 0, KEYEVENTF_SILENT | KEYEVENTF_KEYUP, 0);
But since I am using .net I don't know what the actual value of KEYEVENTF_SILENT is. I can't call it with out knowing.
Any ideas?
© Stack Overflow or respective owner