Hello, am currently workin on a project in form of a windows reminder, bt am havin serious problems with calling up the systems beep and sounds using shell. thanks 4 ur anticipated help.

Recommended Answers

All 4 Replies

Beep()

See this thread regarding sound and beeping:
http://www.daniweb.com/forums/thread231020.html

Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
		Console.Beep()
		Dim sp As New System.Media.SoundPlayer("C:\filename.wav")
		sp.Play()
		sp.Dispose()
	End Sub
commented: He is super..... +0
commented: Another good unappriecated answer that OP never even thanks +1

Mine was funnier... :)~

commented: i'll give you that +5

Umarmai -- I see you reviewed the posted solutions. Did they work for you?

If they didn't then let us know. If they did then please mark this thread as solved and good luck!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.