拥有C#标签的文章
C#

C#-TextBox-登录表单password无形---ShinePans

usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceTextBox_1{publicpartialclassForm1:Form{publicForm1(){

系统 2019-08-12 01:53:15 2035

C#

C# 导入导出excel文件案例

个人总结导出excel报表的案例://导出报表protectedvoidbtnExport_Click(objectsender,EventArgse){Listlist=GetDataTableFromIList();if(list==null||(list!=null&&list.Count==0)){Messabox.ShowError(this,"无记录导出");return;}stringname="~/File/

系统 2019-08-12 01:33:43 2033

C#

c# 操作word

1.引用word组件2.定义wordWord.Applicationapp=newWord.Application();Word.Documentdoc=newWord.Document();app.DisplayAlerts=Word.WdAlertLevel.wdAlertsNone;objectObj_FileName=“filename”;objectVisible=false;objectReadOnly=false;//打开文件doc=app.

系统 2019-08-12 09:27:34 2032

C#

C#实现对Word文件读写

#实现对Word文件读写手头上的一个项目报表相对比较简单,所以报表打印采用VBA引擎,通过定制Word模版,然后根据模版需要填充数据,然后OK,打印即可。实现方法:首先需要引用VBA组建,我用的是Office2003Professional,Dll版本号为MicrosoftWord11.0另外当然还需要引用Interop.Word.Dll.代码如下:///#region打开Word文档,并且返回对象wDoc,wDoc//////打开Word文档,并且返回对

系统 2019-08-12 09:26:53 2032