メインコンテンツへスキップ

検索

検索

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

サインインしてコメントを残してください。