Tap sound

  • Thread starter Thread starter SvenÅke Andersson
  • Start date Start date
S

SvenÅke Andersson

Does anyoneknow how to from an C# application play the build-in tap sound?

/SåA
 
Here's a VB definition to make a beep sound:
'<DllImport("coredll.DLL", EntryPoint:="MessageBeep")> _

Declare Function MessageBeep Lib "coredll" (ByVal flags As Integer) As
Boolean
 
Back
Top