摘要: /// /// Perform a Clone of the object asdfas. /// /// The type of object being cloned. /// The object instance to clone. /// The ... 阅读全文
posted @ 2014-11-24 11:09 bobo-bobo 阅读(816) 评论(0) 推荐(0) 编辑
摘要: public Form1() { InitializeComponent(); button1.Click += new EventHandler(button_Click); button2.C... 阅读全文
posted @ 2014-11-24 09:36 bobo-bobo 阅读(1061) 评论(0) 推荐(0) 编辑
摘要: foreach(Control c in tabControl1.TabPages)//这个循环的意思是说,遍历tabControl1中所有的TabPages,TabPages是包含在tabControl1里面的,循环进来之后,每次循环,c的类型是TabPage,而不是TabControl。代码修改... 阅读全文
posted @ 2014-11-24 09:31 bobo-bobo 阅读(531) 评论(0) 推荐(0) 编辑
摘要: //获取当前进程的完整路径,包含文件名(进程名)。string str = this.GetType().Assembly.Location;result: X:\xxx\xxx\xxx.exe (.exe文件所在的目录+.exe文件名)//获取新的 Process 组件并将其与当前活动的进程关联的... 阅读全文
posted @ 2014-11-22 08:18 bobo-bobo 阅读(196) 评论(0) 推荐(0) 编辑
摘要: Content.Text = "程序集版本:" + System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.ToString() +"\n";Content.Text += "文件版本:" + Application.P... 阅读全文
posted @ 2014-11-21 14:09 bobo-bobo 阅读(2354) 评论(0) 推荐(0) 编辑
摘要: this.Close(); //只是关闭当前窗口,若不是主窗体的话,是无法退出程序的,另外若有托管线程(非主线程),也无法干净地退出; Application.Exit(); //强制所有消息中止,退出所有的窗体,但是若有托管线程(非主线程),也无法干净地退出; Application.Exi... 阅读全文
posted @ 2014-11-21 13:54 bobo-bobo 阅读(145) 评论(0) 推荐(0) 编辑
摘要: [HttpPost] public ActionResult ExportExcel(FormCollection form) { string strHtml = form["hHtml"]; strHtml ... 阅读全文
posted @ 2014-11-21 09:04 bobo-bobo 阅读(663) 评论(0) 推荐(1) 编辑
摘要: 用记事本打开VBP文件找到这一行:Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.1#0;MSCOMCTL.OCX改为:Object={831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0;MSCOMCTL.OCX保存... 阅读全文
posted @ 2014-11-20 10:43 bobo-bobo 阅读(434) 评论(0) 推荐(0) 编辑
摘要: null 阅读全文
posted @ 2014-11-18 16:18 bobo-bobo 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 一般错误1 0x80004005 MISC The operation failed Virus Scanner Integration Issue Usually Related To Script Blocking. 和防病毒软件整合的指令脚本有关2 0x800300FD MISC Unknow... 阅读全文
posted @ 2014-11-18 09:16 bobo-bobo 阅读(3860) 评论(0) 推荐(0) 编辑