winform在线操作office--dsoframerocx第三方控件
Posted junhuang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了winform在线操作office--dsoframerocx第三方控件相关的知识,希望对你有一定的参考价值。
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第三方控件的主要内容,如果未能解决你的问题,请参考以下文章
求救!!..Winform 对 Excel的操作问题 ..!!!!!急急急!!!!
c# winform 怎么弄展开收缩的左边菜单 功能 急 在线等