博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 2 3 4 5 6 7 8 ··· 11 下一页

2010年4月28日

摘要: 序: 我是自学的C#,在看到多线程一章时,郁闷了,搞不懂,很难理解吧...自认为有软件天赋,却没看懂...唉...自信心被打击了,到网上查了很多的资料,包括MSDN 上也查过资料,可惜还是没搞懂多线程... 于是,硬着头皮一遍一遍的看多线程那一章,终于... 阅读全文

posted @ 2010-04-28 03:46 烈火123 阅读(170) 评论(0) 推荐(0) 编辑

2010年4月24日

摘要: button1_Click(sender, e); 阅读全文

posted @ 2010-04-24 23:58 烈火123 阅读(128) 评论(0) 推荐(0) 编辑

2010年4月21日

摘要: DataTable dt = new DataTable(); OleDbDataReader reader=null; string[] yuan = null; try { ... 阅读全文

posted @ 2010-04-21 10:50 烈火123 阅读(245) 评论(0) 推荐(0) 编辑

2010年4月15日

摘要: 1. 配置文件概述: 应用程序配置文件是标准的 XML 文件,XML 标记和属性是区分大小写的。它是可以按需要更改的,开发人员可以使用配置文件来更改设置,而不必重编译应用程序。配置文件的根节点是configuration。我们经常访问的是appSettings,它是由.Net预定... 阅读全文

posted @ 2010-04-15 19:00 烈火123 阅读(141) 评论(0) 推荐(0) 编辑

摘要: 窗体添加notifyIcon控件 private void Form1_SizeChanged(object sender, EventArgs e) { if (this.WindowState == FormWindowState.... 阅读全文

posted @ 2010-04-15 18:41 烈火123 阅读(156) 评论(0) 推荐(0) 编辑

2010年4月4日

摘要: (未验证) c#webBrowser 实现自动填入选择下拉列表 HtmlDocument doc = webBrowser1.Document; HtmlElement el = doc.GetElementById("下拉列表框的ID"); el.SetAttribute("selectedI... 阅读全文

posted @ 2010-04-04 23:10 烈火123 阅读(348) 评论(0) 推荐(0) 编辑

2010年2月25日

摘要: this.pictureBox1.Image = Image.FromFile("d://1.jpg", false); 阅读全文

posted @ 2010-02-25 16:49 烈火123 阅读(722) 评论(0) 推荐(0) 编辑

2010年1月9日

摘要: this.AcceptButton=button2; 获取或设置当用户按 Enter 键时所单击的窗体上的按钮。 阅读全文

posted @ 2010-01-09 00:31 烈火123 阅读(127) 评论(0) 推荐(0) 编辑

摘要: 1.模拟键盘事件 System.Windows.Forms.SendKeys 以下是 SendKeys 的一些特殊键 代码表。 键 代码 BACKSPACE {BACKSPACE}、{BS} 或 {BKSP} BREAK ... 阅读全文

posted @ 2010-01-09 00:29 烈火123 阅读(169) 评论(0) 推荐(0) 编辑

2009年12月17日

摘要: File.ReadAllText("d://abc.txt", Encoding.Default); 打开一个文本文件,将文件的所有行读入一个字符串,然后关闭该文件。 阅读全文

posted @ 2009-12-17 13:16 烈火123 阅读(121) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 7 8 ··· 11 下一页