Hi Marc,
I am also working on the VLC .Net Interface.
I guess, the available enum are these...
public enum PlayerState
{
None = 0,
Playing = 1,
Paused = 2,
}
So i belive, the best that you use is VLanControl.PlayerState.Playing
Hey, I have a problem too,
I have also created the DLL,
After adding in the Tool Box, If I do drag and drop it in the IDE and set the neccessary code, I am not getting any output( I am trying to run a mp4 file),
The code that i am trying to use is
VLanControl.VlcUserControl vlc = new VLanControl.VlcUserControl();
vlc.Parent = this;
vlc.Dock = DockStyle.Fill;
this.vlc.AddAndPlay(@"D:\testMp4\sample.mp4", "");
I am adding this code in the Form_Load...
I am missing any thing or am i doing any thing wrong ?
Thanks in advance for any help
cheers
Paul