\\\
Private Declare Auto Function GetKeyState Lib "user32.dll" ( _
ByVal nVirtKey As VirtualKey _
) As Boolean
Public Enum VirtualKey As Integer
NumLock = 144
CapLock = 20
End Enum
..
..
..
If GetKeyState(VirtualKey.NumLock) Then
...
End If
///
HTH,
Herfried K. Wagner
Ask a Question
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.