If you look at PublicEnemy's sample, you'll find that using the wrapper is quite simple. Create your form in the designer and place your pictureboxes. Link Kairos' interop DLL to your references (References -> Add reference) -- stick a using statement for the 'VLC' namespace in the top of your 'Form1.cs' (or whatever it is called) so you can get at the appropriate VLC objects. Finally create the requisite number of media player references in your Form's CTOR (or your choice of init function...). Binding to the picturebox is as simple as giving the mediaplayers the window handles of the pictureboxes (Handle is a property of the PictureBox). Each media player can play a different stream -- so each picture box can show a different video. I'll leave the guessing of how to add media items to you -- PublicEnemy's sample should be more than sufficient as an example.cool. thnx for a great job! i need to play multiple video streams from different source urls on one form (preferably in PictureBoxes). can't get how to do it, any working sample?
~Akram.