how can i schedule a media player with times in vb.net
- by testkhan
i have media player in my form and the following code...
If TimeOfDay >= "11:00:00 AM" AndAlso TimeOfDay < "12:00:00 AM" Then
toplay = "D:\videos\video5.avi"
Player_Preview.URL = toplay
Player_Preview.Ctlcontrols.Play()
End If
now i want to play multiple files in this time how can i do that...