Check whether sound card is installed or not using waveOutGetNumDevs API
Check whether sound card is installed or not using waveOutGetNumDevs API
Rate Check whether sound card is installed or not using waveOutGetNumDevs API
(2(2 Vote))
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
Check whether sound card is installed or not using waveOutGetNumDevs API Comments
No comments yet — be the first to post one!
Post a Comment