|
-
Nov 15th, 2000, 11:48 AM
#1
Hey ppl.
I realy need help for this one, i don´t know the flag for the Scroll Lock key, and i need help too on the Keyboardevent sintax too. If you have the code using the keyboardevent for scroll lock key please wright it here.
Thank you,numibesi
-
Nov 15th, 2000, 12:05 PM
#2
transcendental analytic
You would have to use for instance a timer to check for the keystate, using getasynckeystate api:
Code:
Private Declare Function GetAsyncKeyState Lib "user32" (ByVal vKey As Long) As Integer
Const VK_SCROLL = &H91
Private Sub Timer1_Timer()
If GetAsyncKeyState(VK_SCROLL) Then MsgBox "Scroll Lock pressed"
End Sub
Use  
writing software in C++ is like driving rivets into steel beam with a toothpick.
writing haskell makes your life easier:
reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|