I have looked at previous threads discussing this but they do not solve my problem. I have an audio file I could play on loading the console app I wrote. I added the .wav file to resources, the Custom Tool Namespace is still My.Resources, if I open the full path and explore to the resource folder the Wav is there (Called "Entrance")
Under the opening Sub I have
Code:
My.Computer.Audio.Play(My.Resources.Entrance, AudioPlayMode.Background)
it tells me it is not a member of resources. This is not critical to the application, or even necessary.
As a learning chance I would like to know what I am missing here. Should I create a class to play this audio file, any explanation is appreciated. Solutions would be nice too, however explaining why it is not working would help me more in the future.
Thank you