views:

573

answers:

1

Need to make the Keyboard's LED (Caps lock / Num lock or Scroll lock LED) blink either using C# or VB.net. (With or without using interop is fine)

+10  A: 

This Microsoft Support article seems to be what you're looking for. It explains how to toggle the num lock, caps lock, and scroll lock keys in Visual Basic 6.

Ben
+1: nice find...
Jason
Looks like it's just win32 calls, so you could probably manage it with PInvoke.
Jim Leonardo
this is the closes answer i guess. thanks ben.
imnd