Ho modificato così
Ma continua a non dare segni di vitaCodice PHP:
Private Sub GestisciMp3(ByVal operation As String)
Dim oplay As Audio
Dim ofile As String = ListBox2.Items.Item(ListBox2.SelectedIndex)
oplay = New Audio(ofile)
If operation = "Play" Then
oplay.Play()
End If
If operation = "Pause" Then
oplay.Pause()
End If
If operation = "Stop" Then
oplay.Stop()
End If
End Sub