Hi, these two lines of codes already tested and works properly. What if you include those *.wav(s) and *.gif(s) in app resources? How can we address them using My.Recourses?

Code:
Dim animatedImage As New Bitmap(Application.StartupPath & "\splash.gif")
Code:
My.Computer.Audio.Play("select.wav")
Need to achieve something independent and app-included like this: (Following codes are examples and errors surly pop up)

Code:
Dim animatedImage As New Bitmap(My.Resources.splash)
Code:
My.Computer.Audio.Play(My.Resources.select)