I am currently checking the keyboard state in my program:
SlimDX.DirectInput.KeyboardState keyboardState = keyboard.GetCurrentState();
And detecting key presses like this:
if(keyboardState.IsPressed(SlimDX.DirectInput.Key.Q))...
I can't figure out how to detect ANY key press, rather than specific keys. I can't put my finger on it after trawling through the SlimDX API documentation. I'm probably missing something really simple no doubt.