hi nick Actually i don't want to use the beep function but to generate the sine wave sound
J
jignesh142
@jignesh142
Posts
-
Sine Wave Sound -
Sine Wave Soundi want to do something like this Option Explicit Option Base 1 Private Sub CommandButton1_Click() Dim Sc(3) as integer Dim Frequency=440 Dim Duration = 1000 ' in millisecond Sc(1)=1 Sc(2)=1.125 Sc(3)=1.2 For i = 1 to 3 ' some code is required to play the sine wave sound for above frequency and duration next i End
-
Sine Wave SoundHow can i generate the sine wave sound in VB? I want to generate the sine wave sound for customized duration and customized frequency Any help?