博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

2009年8月10日

摘要: private void btnPrint_Click(object sender, EventArgs e) { SendKeys.Send("%{PRTSC}"); Application.DoEvents(); this.printDocument1.Print(); } private void printDocument1_PrintPage(object sender, System.Drawing.Printing.PrintPageEventArgs e) { IDataObject iData = Clipboard.GetDataObject(); Im 阅读全文

posted @ 2009-08-10 21:01 codingsilence 阅读(121) 评论(0) 推荐(0) 编辑

摘要: 1、介绍 最近在做一个系统,要求在安装程序在完成安装之后删除自身。遇到这样的问题,当然要祭起”Google大法”。果不其然,与我想同问题的朋友还是不少。网上给出的方案里面大致有这么几种。2、方法(1)利用批处理文件,删除自身using System.Runtime.InteropServices; //****************************************添加引用[DllImport("kernel32.dll")] public static extern uint WinExec(string lpCmdLine, uint uCmdShow) 阅读全文

posted @ 2009-08-10 08:20 codingsilence 阅读(194) 评论(0) 推荐(0) 编辑