跳至主內容

搜尋

搜尋

Adding A Sound Clip To Query Database Response

評論

3 條評論

  • Avatar
    Ian Cummings
    版主

    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
    版主

    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
    版主

    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

登入寫評論。