POP-UP CAPSLOCK Tray Application using C#
-
Does anyone know if there is a simple tray application that will provide a pop-up window that indicates that the caps lock in on? I want to see the window at the bottom of my screen when the CAPSLOCK on and have it dissappear when the CAPSLOCK is off. Otherwise; can anyone tell me how to write such an application using Visual Studio 2010 and C#? Thanks in advance. Joe :)
joe
-
Does anyone know if there is a simple tray application that will provide a pop-up window that indicates that the caps lock in on? I want to see the window at the bottom of my screen when the CAPSLOCK on and have it dissappear when the CAPSLOCK is off. Otherwise; can anyone tell me how to write such an application using Visual Studio 2010 and C#? Thanks in advance. Joe :)
joe
There must be applets around that do that, I don't have any information on them though. Creating something yourself would be very easy; polling the keyboard state at 1 or 2 Hz using Control.IsKeyLocked[^] seems the easiest way to do it. :)
Luc Pattyn [My Articles] Nil Volentibus Arduum
-
There must be applets around that do that, I don't have any information on them though. Creating something yourself would be very easy; polling the keyboard state at 1 or 2 Hz using Control.IsKeyLocked[^] seems the easiest way to do it. :)
Luc Pattyn [My Articles] Nil Volentibus Arduum