|
Description
beep, this will cause the pc speaker
to beep at a given frequency for a
given duration in milliseconds
Author
Programmershelp
Code
Private Declare Function Beep
Lib "kernel32" _
(ByVal dwFreq As Long, ByVal dwDuration
As Long) As Long
Private Sub Form_Load()
Beep 200, 2000
End Sub
Information
tested using VB 6
|