hi there, I am making an animation which include music. I want my program to stop the animation when the music stops. Anybody know what code do i need to apply through if condition? I need your help... =( tnx.
Here is my code:
Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
AxWindowsMediaPlayer1.URL = ("Beyonce - Diva.mp3")
If AxWindowsMediaPlayer1 = "i dont know what code should I place here" Then
Timer1.Enabled = False
End If
End Sub