19/05/2023: A causa di un errore sono stati cancellati, insieme ad account creati da bot, alcuni account legittimi. Si prega di leggere qui: https://www.gambas-it.org/smf/index.php?topic=9733.0
Public Sub ToggleButton_PlayStop_Click() Debug ToggleButton_PlayStop.Value If ToggleButton_PlayStop.Value = False Then Try mp.Stop If Error Then Message.Error("error trying to stop the media player", "ok") Stop Event Endif ToggleButton_PlayStop.Text = "PLAY" ToggleButton_PlayStop.Picture = Stock["16/play"] Else Try mp.Start If Error Then Message.Error("Error trying to start media player!" & gb.crlf & "Please check if media URL is valid or other options.", "ok") Stop Event Endif ToggleButton_PlayStop.Text = "STOP" ToggleButton_PlayStop.Picture = Stock["16/stop"] EndifEnd