I don't know if anyone is familiar with the Microsoft Cross-Platform Audio Creation Tool but I have been through a tutorial to implement the use of this is to my game but I am having problems stopping a sound that I have looping.

Here is the code to stop the cue:

Code:
Public Sub StopSound()

        Try
            Cue.Stop(AudioStopOptions.Immediate) 'Stop Sound Immediatly'
        Catch ex As Exception
        End Try

End Sub
Can anyone help?