PlayWAV – Play a WAV file

PlayWAV – Play a WAV file

Const SND_ASYNC = &H1Private Declare Function PlaySound Lib "winmm.dll" Alias "PlaySoundA" (ByVal _    lpszName As String, ByVal hModule As Long, ByVal dwFlags As Long) As Long' Play a WAV file.'' FileName is a string containing the full path of the file.' If SyncExec is True, the sound is played synchronously' Returns True if no errors occurredFunction PlayWAV(FileName As String, Optional SyncExec As Boolean) As Boolean    If SyncExec Then        ' play the file synchronously        PlayWAV = PlaySound(FileName, 0, 0)     Else        ' play the file asynchronously        PlayWAV = PlaySound(FileName, 0, SND_ASYNC)     End IfEnd Function

Share the Post:
data observability

Data Observability Explained

Data is the lifeblood of any successful business, as it is the driving force behind critical decision-making, insight generation, and strategic development. However, due to its intricate nature, ensuring the

Heading photo, Metadata.

What is Metadata?

What is metadata? Well, It’s an odd concept to wrap your head around. Metadata is essentially the secondary layer of data that tracks details about the “regular” data. The regular