2020年1月3日
摘要: 无 阅读全文
posted @ 2020-01-03 17:28 JioNote 阅读(800) 评论(0) 推荐(0) 编辑
摘要: using Spire.Doc; using Spire.Doc.Documents; //新建一个Document类对象,并加载需要的Word文档 Document doc1 = new Document(); Document doc2 = new Document(); doc1.LoadFr 阅读全文
posted @ 2020-01-03 17:13 JioNote 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1.创建相应的文件夹 /// <summary> /// 按名字创建相应的文件夹 /// </summary> /// <param name="dirName"></param> /// <returns></returns> private string CreatePdfPath(string 阅读全文
posted @ 2020-01-03 17:05 JioNote 阅读(82) 评论(0) 推荐(0) 编辑
摘要: using System.IO; using iTextSharp.text.pdf; /// <summary> /// 使用第三方插件 =》 去除 Evaluation Warning : The document was created with Spire.PDF for .NET. /// 阅读全文
posted @ 2020-01-03 17:00 JioNote 阅读(1063) 评论(0) 推荐(0) 编辑
摘要: using Spire.Pdf; using System.Drawing; using System.Drawing.Imaging; /// <summary> /// 添加二维码到PDF /// </summary> /// <param name="sourcePdf">pdf文件路径</p 阅读全文
posted @ 2020-01-03 16:54 JioNote 阅读(333) 评论(0) 推荐(0) 编辑
摘要: using SelectPdf; /// <summary> /// 网页生成PDF /// </summary> /// <param name="dirPath">保存路径</param> private string CreatePdfByUrl(string dirPath) { var u 阅读全文
posted @ 2020-01-03 16:47 JioNote 阅读(932) 评论(1) 推荐(0) 编辑
摘要: using System.Drawing; using ZXing; using ZXing.QrCode; /// <summary> /// 生成二维码 /// </summary> /// <param name="dirPath">路径</param> /// <returns></retu 阅读全文
posted @ 2020-01-03 16:38 JioNote 阅读(162) 评论(0) 推荐(0) 编辑
摘要: --添加"紧急状态"字段 use [GUOYOUZI.Study] go IF(NOT EXISTS(SELECT 1 FROM sys.tables t JOIN sys.columns c ON c.object_id = t.object_id WHERE t.name='BasicInfo' 阅读全文
posted @ 2020-01-03 16:13 JioNote 阅读(279) 评论(0) 推荐(0) 编辑
摘要: use [GUOYOUZI.Study] if exists (select 1 from sys.sysreferences r join sys.sysobjects o on (o.id = r.constid and o.type = 'F') where r.fkeyid = object 阅读全文
posted @ 2020-01-03 16:08 JioNote 阅读(350) 评论(0) 推荐(0) 编辑
摘要: /**变更申请同意--存储过程**/ USE [GUOYOUZI.Study] IF EXISTS (SELECT name FROM sysobjects WHERE name = 'Proc_ChangeApply_Agree' AND type = 'P') DROP PROCEDURE Pr 阅读全文
posted @ 2020-01-03 16:01 JioNote 阅读(339) 评论(0) 推荐(0) 编辑