該函式可以通過揚聲器發出提示音
語言參考
Public Sub Beep()
Dim I As IntegerFor I = 1 To 100 ' Loop 100 times.Beep ' Sound a tone.Next I
Private Declare Function Beep Lib "kernel32" (ByVal dwFreq As Long, ByVal dwDuration As Long) As Long
例如:Beep 600,500就表示讓Visual Basic在500毫秒內唱出一個600的調子
API函式
BOOL Beep(DWORD dwFreq, // sound frequency, in hertzDWORD dwDuration // sound duration, in milliseconds);
#include <windows.h>int main ( void ){int i = 2 ;while ( i-- ){//Beep函式,使揚聲器發出簡單聲音//要調用這個函式需要加上頭檔案windows.h//在Visual C++ 6.0下運行通過Beep(1000,1000);}return 0;}
異常狀況
Exception | Condition |
---|---|
HostProtectionException | 在不允許訪問用戶界面的伺服器(例如 SQL Server)上執行此方法。 |