2011年5月26日
摘要: 为选中文件注册右键菜单 private void registerFile() { if (this.txtName.Text.Length == 0) return; // 注册到文件 //if (this.ckRegToFile.Checked) //{ RegistryKey shell = Registry.ClassesRoot.OpenSubKey("*", true).OpenSubKey("shell", true); if (shell == null) { shell = Registry.ClassesRoot.OpenSubKey 阅读全文
posted @ 2011-05-26 18:01 懒懒的呐喊 阅读(434) 评论(0) 推荐(0) 编辑
摘要: 一个小小的例子, 演示了如何通过操作注册表, 添加自己的文件或文件夹右键菜单.// 添加到注册表private void btnRegister_Click(object sender, EventArgs e){ if (this.tbMenuTitle.Text.Length == 0) return; // 注册到文件 if (this.ckRegToFile.Checked) { RegistryKey shell = Registry.ClassesRoot.OpenSubKey("*", true).OpenSubKey("shell", t 阅读全文
posted @ 2011-05-26 17:47 懒懒的呐喊 阅读(1261) 评论(0) 推荐(0) 编辑
  2011年5月20日
摘要: yrounddown(towards −∞)roundup(towards +∞)roundtowardszeroroundaway fromzeroroundtonearest+23.67+23+24+23+24+24+23.50+23+24+23+24+23or+24+23.35+23+24+23+24+23+23.00+23+23+23+23+23000000−23.00−23−23−23−23−23−23.35−24−23−23−24−23−23.50−24−23−23−24−23or−24−23.67−24−23−23−24−24 阅读全文
posted @ 2011-05-20 09:59 懒懒的呐喊 阅读(227) 评论(0) 推荐(0) 编辑
  2011年5月7日
摘要: 转http://www.cnblogs.com/limei/archive/2010/07/06/1772332.html同事问到windows service的东东,现在整理一下,用c#如何创建一个windows service,以及如何调试、部署、卸载。一、创建windows service1. 打开VS2008,新建一个Project, Project类型选择Visual C#-Windows,在Templates中选择Windows Service, 其他可以默认,点击OK。2. 在Solution Explorer中会看到自动产生了三个文件:app.config, Program.c 阅读全文
posted @ 2011-05-07 11:06 懒懒的呐喊 阅读(623) 评论(0) 推荐(2) 编辑
  2011年4月25日
摘要: http://www.zhuoqun.net/html/ycategory/tech/adobeflex 阅读全文
posted @ 2011-04-25 10:53 懒懒的呐喊 阅读(126) 评论(0) 推荐(0) 编辑
  2011年4月22日
摘要: JavaScript Object Notation (aka JSON) is a very popular alternative to XML for transmitting data to the web browser. Flexjson is a lightweight library for serializing Java objects into JSON. What's different about Flexjson is it's control over what gets serialized allowing both deep and shal 阅读全文
posted @ 2011-04-22 17:35 懒懒的呐喊 阅读(536) 评论(0) 推荐(0) 编辑
  2011年4月19日
摘要: (1)var popUp:content=content(PopUpManager.createPopUp(this,content,true));popUp.width = 500;popUp.height = 300;popUp.showCloseButton=true;PopUpManager.centerPopUp(popUp);(2)var popwin:TitleWindow = new TitleWindow();PopUpManager.addPopUp(popwin,this,true);PopUpManager.centerPopUp(this);(3)<mx:Tit 阅读全文
posted @ 2011-04-19 11:20 懒懒的呐喊 阅读(1215) 评论(0) 推荐(0) 编辑
  2011年4月11日
摘要: 而然在amazon发现此书,看了看发现和以前Dylan的管理style非常像,相见恨晚,学习一下。http://download.csdn.net/source/1126479#acomment 阅读全文
posted @ 2011-04-11 09:35 懒懒的呐喊 阅读(162) 评论(0) 推荐(0) 编辑
摘要: refer tohttp://www.codeproject.com/KB/miscctrl/UserPrefs_.aspx 阅读全文
posted @ 2011-04-11 09:32 懒懒的呐喊 阅读(145) 评论(0) 推荐(0) 编辑
摘要: 在main 中加入以下代码既可。TypeDescriptor.AddAttributes( _ GetType(Specialized.StringCollection), _ New EditorAttribute( _ "System.Windows.Forms.Design.StringCollectionEditor, System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a", _ GetType(System.Drawing.Design.UITypeEdit 阅读全文
posted @ 2011-04-11 09:26 懒懒的呐喊 阅读(1237) 评论(0) 推荐(0) 编辑