Checking if the Fn key was pressed on a laptop

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I'm writing a C# app that needs to know when the user presses the laptop's Fn
key and another key, say F6 (Fn+F6). From the research I've done it seems as
though I can check the Control.Modifierkeys and determine if the Fn key was
pressed. However the Modifier key list doesn't include the Fn key.

I need some guidance on the correct way to handle this problem.

Thanks for any assistance.
 
I recommend you first to check if this key produces some Event and if
it's produced check the integer value, then you cant proccess it...

Greetings...

Miguel Ortiz Falcón
(e-mail address removed)
 
My understanding is that the Fn key does not fire an event. It's similar to
Shift/Ctrl/Alt keys in that they are considered modifiers. Is this correct

How would you go about coding your recommendation?
 
Back
Top