黄聪

论SEO对人类的重要性,请看我的博客:hcsem.com

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

随笔分类 -  C#学习

上一页 1 ··· 5 6 7 8 9

摘要:以前用C#在Word2003下写的生成报表程序。现在大家都改用Office2007了,给程序做了下升级,发现生成的文档后缀都是docx了。Office2007 的Word文档格式为MicrosoftOpen Office XML Format (.docx),这种格式不被老版本的 Office兼容。Word2007的文档格式与Word97~2003的二进制文档格式有根本的不同。Office2007 的推出,全面启用了 OPENXML 概念。Word、Excel、PowerPoint文档已经默认保存为压缩的XML格式,所以其大小也大大减小了。也就是说B/S模式下,客户端下载下生成的docx文件后 阅读全文
posted @ 2010-03-26 15:19 黄聪 阅读(3157) 评论(0) 推荐(0) 编辑

摘要:[DllImport("kernel32.dll",SetLastError=true)]staticexternintWriteProfileString(stringlpszSection,stringlpszKeyName,stringlpszString);[DllImport("user32.dll")]publicstaticexternintSendMessage(inthWnd,//handletodestinationwindowuintMsg,//messageintwParam,//firstmessageparameterintl 阅读全文
posted @ 2010-03-26 04:12 黄聪 阅读(492) 评论(0) 推荐(0) 编辑

摘要:1. 我们有一个test.exe的WinForm程序,这是我们要加壳的目标程序。2. 新建一个WinForm工程,删除Form1,然后新建一个类。如下。3. 将test.exe 拷贝到该工程目录,作为嵌入式资源。using System;using System.Windows.Forms;using System.Resources;using System.Reflection;using System.IO;namespace test{ static class Program { [STAThread] static void Main(string[] args) { Stream 阅读全文
posted @ 2010-03-23 22:42 黄聪 阅读(3800) 评论(0) 推荐(0) 编辑

上一页 1 ··· 5 6 7 8 9