Hi, i have a C# application where i use the VLC plugin to view Video that is being streamed over the UDP. my code looks like this: using AxAXVLC; ... private AxVLCPlugin2 vlc; this.vlc = new AxVLCPlugin2(); this.vlc.FullscreenEnabled = false; this.vlc.Toolbar = false; this.vlc.Volume = 50; this.Volu...