Check whether mouse is installed or not using GetSystemMetrics API
Check whether mouse is installed or not using GetSystemMetrics API
Rate Check whether mouse is installed or not using GetSystemMetrics API
(2(2 Vote))
Dim x As Long
x = GetSystemMetrics(19)
If x Then
MsgBox "Mouse is installed"
Else
MsgBox "Mouse is not installed"
End If
End
End Sub
Check whether mouse is installed or not using GetSystemMetrics API Comments
No comments yet — be the first to post one!
Post a Comment