摘要: 已Ctrl+F1为例子 Hotkey.cs 1using System; 2using System.Runtime.InteropServices; 3 4namespace SystemHotKey 5{ 6 public delegate void HotkeyEventHandler(int HotKeyID); 7 8 public class Hotkey ... 阅读全文
posted @ 2007-12-25 04:00 Xsi64 阅读(147) 评论(0) 推荐(0) 编辑
摘要: 修改xml文件方法,下面列子 键LastLoginName,值path /**//// /// 纪录最后登陆的用户名 /// /// 登陆的用户名 private static void SetLastLoginName(string path) { XmlDocument doc = new XmlDocument(); doc.Load(Application.Exec... 阅读全文
posted @ 2007-12-25 03:57 Xsi64 阅读(491) 评论(0) 推荐(0) 编辑
摘要: /**//// /// 16位MD5加密方法 /// /// 原文 /// 密文 public static string getMd5(string str) { MD5CryptoServiceProvider md5 = new MD5CryptoServiceProvider(); string getstr = BitConverter.ToString(md5.... 阅读全文
posted @ 2007-12-25 03:51 Xsi64 阅读(132) 评论(0) 推荐(0) 编辑