Embeding music

how do you intend to use the music exactly?

just want to know a little detail of it to let us get started ...

=)
 
Go to Resources tab in project Properties and add the wav files, use SoundPlayer to play them.
VB.NET:
Dim player As New Media.SoundPlayer(My.Resources.chimes)
player.Play()
 
Back
Top