private void BtnInsertMedia_Click(object sender, EventArgs e)
        {

            InWord frm = new InWord("请填入视频地址(后缀必须是.swf):");
            frm.ShowDialog();
            if (frm.Value != null && frm.Value != "")
            {

                IHTMLDocument2 doc = (IHTMLDocument2)this.webBrowser1.Document.DomDocument;
                IHTMLTxtRange range = doc.selection.createRange() as IHTMLTxtRange;
                range.pasteHTML(range.text + @"<br /><embed wmode=""transparent"" src=""" + frm.Value + @""" quality=""high"" width=""480"" height=""400"" align=""middle"" allow script Access=""always"" allowfullscreen=""true"" type=""application/x-shockwave-flash""></embed><br />");

           }
        }
本文来自: 张筱祥博客(www.zxxblog.com) 详细出处参考:http://www.zxxblog.com/943

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-01-13
  • 2022-01-05
  • 2021-10-19
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-07-19
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案