I started making my game recently, and I am having some trouble with the sound. I am able to play a background loop, and have it continue running as expected, but when I move my mouse over a menu item, a bleeping noise occurs like any hardcore game

.
Thing is, when this bleeping noise occurs, the background loop stops playing. I have been able to have both running using the Media Player SDK (it is really slugish for the beeping noises so I just continued to use the
Media.SoundPlayer method) like so:
CODE
Dim bgLoop As New WMPLib.WindowsMediaPlayer
bgLoop.URL = "C:\iRsexyURL\omgIamAWAVFILE.wav"
bgLoop.settings.setMode("loop", True)
However if I spam the menu items, the background loop randomly stops. Does anybody have any ideas as to how I can play multiple WAV files without interuptions? Thanks.