i have the following code....
For Each dgvRow In bout_grid.Rows
vfile = dgvRow.Cells("FileName").Value
video.FileName = "D:\bee\" + vfile
vduration = video.Duration
vposition = video.Position
If vduration > 0 The
bplayer_out.URL = "D:\bee\" + vfile
bplayer_out.Ctlcontrols.play()
End If
Next dgvRow
but it plays only one video and than stops but i want that it should play every video in datagridview i.e bout_grid....i have tried
System.Threading.Thread.Sleep = vduration
but it stops every thing how can i solve it