跳到主内容

搜索

搜索

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

请先登录再写评论。