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