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?