Skip to main content

Search

Search

Adding A Sound Clip To Query Database Response

Comments

3 comments

  • Avatar
    Ian Cummings
    Moderator

    You can make the computer beep using VBScript with something like the below:

     

    Set oShell = CreateObject("Wscript.Shell")
    oShell.Run "%comspec% /c echo " & Chr(7), 0, False
     
    Note sure if there is a VBS event that is suited for putting it into though.
    0
  • Avatar
    Ian Cummings
    Moderator

    You can make the computer beep using VBScript with something like the below:

     

    Set oShell = CreateObject("Wscript.Shell")
    oShell.Run "%comspec% /c echo " & Chr(7), 0, False
     
    Note sure if there is a VBS event that is suited for putting it into though.
    0
  • Avatar
    Ian Cummings
    Moderator

    You can make the computer beep using VBScript with something like the below:

     

    Set oShell = CreateObject("Wscript.Shell")
    oShell.Run "%comspec% /c echo " & Chr(7), 0, False
     
    Note sure if there is a VBS event that is suited for putting it into though.
    0

Please sign in to leave a comment.