MAKE THE KEYBOARD LIGHTS DANCE!!!!!

By | 2002-06-01

this is just a simple code demonstrating the use of the SendKeys function!!! other than that this code is for humor!!! to some this code is useless but this might be helpfull 2 someone, that’s why i submitted it. Plus this is pretty funny!!!

Original Author: Im_[B]0ReD

Assumptions

put a command button on the form named Command1

Side Effects

This temporarily freezes your computer- (until it finishes the For, Next loop)

Code

Private Sub Command1_Click()
Dim i As Integer 'declare the variable
For i = 1 To 150 'how many times (you can change the 150 to whatever you want)
SendKeys "{CAPSLOCK}", True 'turn on the capslocks light, then turn it off
SendKeys "{DOWN}", True 'just to give more time
SendKeys "{DOWN}", True '^^^^^
SendKeys "{SCROLLLOCK}", True 'turn on the scroll lock light, turn it off
SendKeys "{DOWN}", True 'give more time
SendKeys "{DOWN}", True '^^^^^
Next i
End Sub

Author: dwirch

Derek Wirch is a seasoned IT professional with an impressive career dating back to 1986. He brings a wealth of knowledge and hands-on experience that is invaluable to those embarking on their journey in the tech industry.

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.