Win Api Beep()
Win Api Beep()
(OP)
This is a simple, but probably very difficult-to-answer, question.
When you get an error message in windows... lets say you typed "blah" into the 'run' dialog, you will hear a nice PC beep.
When *i* try to make a BEEP it sounds WRONG! What frequency is windows using for their error message BEEPS?
When you get an error message in windows... lets say you typed "blah" into the 'run' dialog, you will hear a nice PC beep.
When *i* try to make a BEEP it sounds WRONG! What frequency is windows using for their error message BEEPS?
Ashthud
RE: Win Api Beep()
RE: Win Api Beep()
RE: Win Api Beep()
'vb6
Private Declare Function Beep Lib "kernel32" (ByVal dwFreq As Long, ByVal dwDuration As Long) As Long
Private Sub Command1_Click()
sound 37, 100
End Sub
Private Sub sound(hz, duration)
Beep hz, duration
End Sub
RE: Win Api Beep()
RE: Win Api Beep()
RE: Win Api Beep()
Ashthud
RE: Win Api Beep()
RE: Win Api Beep()
Ashthud