, I'd like to make one of these. My orchestra teacher uses something like this, I believe it's "Howler Timer" or something and once it reaches 0, instead of a beep, it howls :P.'Need a label, textbox, and a timer.
Private Sub Timer1_Tick(sender As Object, e As EventArgs) Handles Timer1.Tick
Label1.Text = Format(DateTime.Now, "hh:mm:ss")
If Label1.Text = TextBox1.Text Then
Console.Beep()
End If
End Sub
Sub DatSub()
Dim Count as int64 = 0
While Count < NumericUpDown1.Value
Threading.Thread.Sleep(1000)
Count += 1
if countdown then
label1.text = NumericUpDown1.Value - Coun
End If
End While
if StandardBeep Then
Console.Beep()
else
My.Computer.Audio.Play("c:\temp\temp.wav") ' This method must use a wav, not an mp3.
end if
end sub