VBcoders Guest



Don't have an account yet? Register
 


Forgot Password?



Check whether sound card is installed or not using waveOutGetNumDevs 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 sound card is installed or not using waveOutGetNumDevs API

Rate Check whether sound card is installed or not using waveOutGetNumDevs API



Dim ndevice As Integer
ndevice = waveOutGetNumDevs()
If ndevice > 0 Then
MsgBox "Sound card is installed."
Else
MsgBox "Sound card is not installed."
End If
End
End Sub

Download this snippet    Add to My Saved Code

Check whether sound card is installed or not using waveOutGetNumDevs API Comments

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

Post your comment

Subject:
Message:
0/1000 characters