摘要: 前些天妹妹使用U盘从学校带回来一个名叫“autorun风暴”病毒,中毒后,双击任何一个盘符都会弹出一个窗体,同时可能还下载了一些木马清除方法:关闭资源管理器中的“wscript.exe”进程显示所有的隐藏文件,并且同时要显示系统文件搜索AutoRun.*将搜到的文件全部删除打开注册表搜“Userinit”,双击,发现其值是 userinit.exe,autorun.bat 将,autorun.ba... 阅读全文
posted @ 2007-05-14 12:04 幸福★星 阅读(201) 评论(0) 推荐(0) 编辑
摘要: 最近机器出现只要网络一连接,过几分钟CUP就会被一个SVCHOST进程占用到100%,因为本人本本有无线有线两种连接方式,有线不会出现这种情况,无线连接时出现这种问题,因此排除中毒可能。上网搜索,终于找到了一篇解决这个问题的文章引用网址如下:http://www.maxgo.cn/2007/03/28/109 当你运行 Windows 自动更新、Windows Update、 Microsoft ... 阅读全文
posted @ 2007-04-13 23:12 幸福★星 阅读(2559) 评论(1) 推荐(0) 编辑
摘要: 添加引用"System.Design.Dll"添加命名空间"using System.Windows.Forms.Design; " public class FolderDialog : FolderNameEditor{ FolderNameEditor.FolderBrowser fDialog = new System.Windows.Forms.Design.FolderNa... 阅读全文
posted @ 2007-03-26 23:43 幸福★星 阅读(710) 评论(0) 推荐(0) 编辑
摘要: 更新桌面使用接口:IActiveDesktopCom接口不能直接在.net中使用,所以需要在.net中重新定义,接口中使用的 , 结构也需要重新定义从网上找到这样一个类引用地址:http://www.dotnet247.com/247reference/msgs/41/205722.aspx using System;using System.Runtime.InteropServices;nam... 阅读全文
posted @ 2007-03-26 10:28 幸福★星 阅读(694) 评论(2) 推荐(0) 编辑
摘要: this.Location = new System.Drawing.Point(Screen.PrimaryScreen.Bounds.Width - this.Width, Screen.PrimaryScreen.Bounds.Height - 100);for (int i = 0; i < Screen.PrimaryScreen.Bounds.Height; i++){ this... 阅读全文
posted @ 2007-02-09 19:55 幸福★星 阅读(727) 评论(1) 推荐(0) 编辑
摘要: ////////////////////////////////////////////////////////////////////////// cvs /// 程序:屏幕取色 /// 功能:动态获取当前屏幕中光标所在位置的颜色 /// 作者:upto(阿球) /// 邮箱:itfun@163.com /// 日期:2004年3月31日 /////////////////... 阅读全文
posted @ 2006-12-13 13:58 幸福★星 阅读(1574) 评论(0) 推荐(0) 编辑
摘要: 最近玩了一款3D网络游戏,一台机器倒装备很费劲,于是想到用虚拟机登录另一ID,安装Virtual PC,再安装系统,玩我的游戏时提示,显卡不支持,换成VMware WorkStation,一样还是不支持,郁闷中上网狂搜,发现网友发的在VMware WorkStation 5.0中玩3D游戏的方法,稍加改变,在5.5中实现了对3D游戏的支持。方法如下1、要求主系统开启D3D的硬件加速功能2、要求虚拟... 阅读全文
posted @ 2006-10-17 15:09 幸福★星 阅读(2740) 评论(1) 推荐(0) 编辑
摘要: 1、打开任务管理器结束wincfgs进程。2、控制面版-文件夹选项-设置显示系统文件及隐藏文件3、删除C:\windows\KB20060111.exe(也许文件名不同,和记事本一样的蓝色图标)。4、删除C:\windows\system32\wincfgs.exe(黄色问号图标的隐藏系统文件)。5、开始-运行-regedit-进入注册表编辑器6、分别删除注册表项HKEY_CURRENT_USER... 阅读全文
posted @ 2006-08-29 11:03 幸福★星 阅读(1433) 评论(2) 推荐(0) 编辑
摘要: /// /// 返回字符串的首写字母字符串/// /// 需得到首写字母的字符串/// public String UtilIndexCode(String IndexTxt){ string _Temp=null; for(int i=0;i=0 && Convert.ToChar(OneIndexTxt)<256) return OneIndexTxt; els... 阅读全文
posted @ 2006-06-19 16:37 幸福★星 阅读(612) 评论(2) 推荐(0) 编辑
摘要: public int Length(string strLen){ int l,t,c; int i; l=strLen.Length ; t=l; for( i=0;i255) { t=t+1; } } return t;}public string Substring(string strValue, ... 阅读全文
posted @ 2006-06-13 11:15 幸福★星 阅读(511) 评论(0) 推荐(0) 编辑