How to reload video in axVLCPlugin21 using C# my code just working one time and just open one video although open another video this my code:
private void panel2Open_Click(object sender, EventArgs e)
{
if (openFileDialog1.ShowDialog()==DialogResult.OK)
{
axVLCPlugin21.playlist.add(openFileDialog1.FileName);
axVLCPlugin21.playlist.play();
axVLCPlugin21.playlist.items.clear();
}
}
It is working fine for me even I used it by getting video links for Datagridview: