VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Check whether network is installed or not using GetSystemMetrics API

by Karthikeyan (187 Submissions)
Category: Windows API Call/Explanation
Compatability: VB 6.0
Difficulty: Unknown Difficulty
Originally Published: Thu 1st November 2001
Date Added: Mon 8th February 2021
Rating: (1 Votes)

Check whether network is installed or not using GetSystemMetrics API

Rate Check whether network is installed or not using GetSystemMetrics API



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


Download this snippet    Add to My Saved Code

Check whether network is installed or not using GetSystemMetrics API Comments

No comments have been posted about Check whether network is installed or not using GetSystemMetrics API. Why not be the first to post a comment about Check whether network is installed or not using GetSystemMetrics API.

Post your comment

Subject:
Message:
0/1000 characters