/ Create the ActiveX control.
axShockwaveFlash = new AxShockwaveFlash();
// Assign the ActiveX control as the host control’s child (swfHost is the WindowsFormHost control)
swfHost.Child = axShockwaveFlash;
axShockwaveFlash.BeginInit();
axShockwaveFlash.Location = new System.Drawing.Point(0, 0);
axShockwaveFlash.LoadMovie(0, @"file://" + System.IO.Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location) + @"\PlayFLV.swf");
axShockwaveFlash.SetVariable("quality", "Low");
//you can resize/align the video according to the window, by modifying these two properties
axShockwaveFlash.ScaleMode = 1;
axShockwaveFlash.AlignMode = 0;
/////The above two proerties are very important.
axShockwaveFlash.EmbedMovie = true;
axShockwaveFlash.AllowFullScreen = "true";
axShockwaveFlash.AllowScriptAccess = "always";