上一页 1 ··· 7 8 9 10 11 12 13 下一页

2012年9月24日

C#进程监控

摘要: C#进程学习,本机中的所有进程的监测与控制转载请注明出处:http://www.cnblogs.com/minotmin/using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;using System.Diagnostics;namespace ProcessMonitor{ public partial class Form1 : F 阅读全文

posted @ 2012-09-24 10:38 程序猴chengxuhou.com 阅读(6015) 评论(0) 推荐(0) 编辑

C#TCP连接信息统计源码

摘要: 代码如下,平时上课所记录,转载请注明出处http://www.cnblogs.com/minotmin/using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Net.NetworkInformation;namespace test2{ public partial clas 阅读全文

posted @ 2012-09-24 10:31 程序猴chengxuhou.com 阅读(704) 评论(0) 推荐(0) 编辑

C#域名解析的简单制作

摘要: 案列如下:代码也很简单,都是平时上课时候记录下的附代码:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using System.Net;namespace test1{ public partial class Form1 : Form { public Form1() { Initializ 阅读全文

posted @ 2012-09-24 10:27 程序猴chengxuhou.com 阅读(633) 评论(0) 推荐(0) 编辑

C#线程池的使用详解

摘要: 在这里你可以学到Microsoft研究CLR实现线程池的原理机制,从而更灵活的处理CLR在实际代码应中线程池的问题,下面我们来看看吧。CLR教程之线程池的产生当 CLR 初始化时,其线程池中不含有线程。当应用程序要创建线程来执行任务时,该应用程序应请求线程池线程来执行任务。线程池知道后将创建一个初始线程。该新线程经历的初始化和其他线程一样;但是任务完成后,该线程不会自行销毁。相反,它会以挂起状态返回线程池。如果应用程序再次向线程池发出请求,那么这个挂起的线程将激活并执行任务,而不会创建新线程。这节约了很多开销。只要线程池中应用程序任务的排队速度低于一个线程处理每项任务的速度,那么就可以反复重用 阅读全文

posted @ 2012-09-24 00:55 程序猴chengxuhou.com 阅读(861) 评论(1) 推荐(1) 编辑

C#进程操作

摘要: 一些常规的操作,附上代码,相信你能看懂。using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.Diagnostics; using System.IO; namespace Windows { public partial class Form2 : Form { public Form2() . 阅读全文

posted @ 2012-09-24 00:51 程序猴chengxuhou.com 阅读(786) 评论(0) 推荐(0) 编辑

C#messagebox常用的方法

摘要: 1.MessageBox.Show("Hello~~~~");最简单的,只显示提示信息。2.MessageBox.Show("There are something wrong!","ERROR");可以给消息框加上标题。3.if(MessageBox.Show("Delete this user?","Confirm Message",MessageBoxButtons.OKCancel) ==DialogResult.OK){//delete}询问是否删除时会用到这个。4.if(Messag 阅读全文

posted @ 2012-09-24 00:48 程序猴chengxuhou.com 阅读(693) 评论(2) 推荐(1) 编辑

C#timer使用方法详解

摘要: C# Timer用法有哪些呢?我们在使用C# Timer时都会有自己的一些总结,那么这里向你介绍3种方法,希望对你了解和学习C# Timer使用的方法有所帮助。关于C# Timer类 在C#里关于定时器类就有3个C# Timer使用的方法1.定义在System.Windows.Forms里C# Timer使用的方法2.定义在System.Threading.Timer类里 "C# Timer使用的方法3.定义在System.Timers.Timer类里下面我们来具体看看这3种C# Timer用法的解释:◆System.Windows.Forms.Timer应用于WinForm中的,它 阅读全文

posted @ 2012-09-24 00:45 程序猴chengxuhou.com 阅读(915) 评论(0) 推荐(0) 编辑

2012年9月23日

C#QQ号批量注册(三)

摘要: 判断宽带连接方式的类:using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace QQ号批量注册{ class judgeBroadband { public const int INTERNET_CONNECTION_MODEM = 1; public const int INTERNET_CONNECTION_LAN = 2; [System.Runtime.InteropServices.DllImport("wininet.dll")] pub 阅读全文

posted @ 2012-09-23 23:46 程序猴chengxuhou.com 阅读(443) 评论(0) 推荐(0) 编辑

C#QQ号批量注册(二)

摘要: 第二部:编写主窗体代码:要实现自动保存,自动打开QQ注册网页,自动填写表单等功能:如图:using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using mshtml;using System.Runtime.InteropServices;using System.Threading;using S 阅读全文

posted @ 2012-09-23 23:44 程序猴chengxuhou.com 阅读(1234) 评论(4) 推荐(0) 编辑

C#QQ号批量注册(一)

摘要: QQ号批量注册首先要实现自动换IP的功能,我的方法是让机器自动重新拨号,即可实现自动换IP,实现方法是建一个ADSL类。从中调用,实现,换断网,重新拨号。using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Diagnostics;//诊断,调用进程namespace QQ号批量注册{ class ADSLHelper { public void Connect(string connectionName, string user, string pass) 阅读全文

posted @ 2012-09-23 23:39 程序猴chengxuhou.com 阅读(950) 评论(0) 推荐(1) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 下一页

导航