码迷,mamicode.com
首页 > Windows程序 > 详细

winform在线操作office--dsoframerocx第三方控件

时间:2018-09-03 22:27:22      阅读:775      评论:0      收藏:0      [点我收藏+]

标签:strip   class   打开   pat   star   one   form   new   false   

 public Form1()
        {
            InitializeComponent();
            RegControl();//注册控件
            axFramerControl1.Menubar = false;//file栏
            axFramerControl1.Titlebar = false;//标题栏
            // axFramerControl1.Toolbars = false;//工具栏
            axFramerControl1.Dock = DockStyle.Fill;
        }
        private void 打开ToolStripMenuItem_Click(object sender, EventArgs e)
        {

            //this.axFramerControl1.Open(@"e:\2.doc");//注:_filePath为.doc或者.xls为后缀的文件;
            this.axFramerControl1.Open(@"e:\1.xls");

            axFramerControl1.ModalState = true;
            //axFramerControl1.Activate();
        }

        private void 保存ToolStripMenuItem_Click(object sender, EventArgs e)
        {
            axFramerControl1.Save();
        }

       

        public bool RegControl()
        {
            try
            {

                string sPath = @"C:\DsoFramer" + @"/dsoframer.ocx";
                ProcessStartInfo psi = new ProcessStartInfo("regsvr32", "/s " + sPath);
                Process.Start(psi);
            }
            catch (Exception ex)
            {
                MessageBox.Show(ex.Message);
            }
            return true;
        }

 

winform在线操作office--dsoframerocx第三方控件

标签:strip   class   打开   pat   star   one   form   new   false   

原文地址:https://www.cnblogs.com/junhuang/p/9581316.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!