<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_NanKe Sir's Blog</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/32798/rss</id><updated>2009-07-06T23:58:26Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/32798/rss"/><entry><id>http://www.cnblogs.com/JoeDZ/archive/2009/06/29/1513042.html</id><title type="text">设置RDLC报表参数</title><summary type="text">报表有两个参数 para1,para2，设置两参数的值：ReportParameter para1 = new ReportParameter("paraName1", paraValue1);ReportParameter para2 = new ReportParameter("paraName2", paraValue2);reportViewer.LocalReport.SetParame...</summary><published>2009-06-29T03:05:00Z</published><updated>2009-06-29T03:05:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2009/06/29/1513042.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2009/06/29/1513042.html"/><content type="text">报表有两个参数 para1,para2，设置两参数的值：ReportParameter para1 = new ReportParameter("paraName1", paraValue1);ReportParameter para2 = new ReportParameter("paraName2", paraValue2);reportViewer.LocalReport.SetParame...</content></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2009/06/26/1511660.html</id><title type="text">用SQL语句查询累计值</title><summary type="text">表 tday qty1 42 13 7SELECT t1.day, (SELECT SUM(t2.qty) FROM t AS t2 WHERE t2.day &lt;= t1.day) as acqty -- 累计数量FROM t AS t1查询结果day qty1 42 53 12</summary><published>2009-06-26T06:19:00Z</published><updated>2009-06-26T06:19:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2009/06/26/1511660.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2009/06/26/1511660.html"/><content type="text">表 tday qty1 42 13 7SELECT t1.day, (SELECT SUM(t2.qty) FROM t AS t2 WHERE t2.day &lt;= t1.day) as acqty -- 累计数量FROM t AS t1查询结果day qty1 42 53 12</content></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2009/06/26/1511584.html</id><title type="text">C#调用存储过程通用类3</title><summary type="text">// ===========================================================// 作者：ZhiQiao | MSN:zhiqiao84☆hotmail.com// 日期： 2009/06/25// 作用： 实用工具类，用于简化存储过程的调用。// 备注： .Net Framework 2.0 SQL Server 2005// =====...</summary><published>2009-06-26T04:50:00Z</published><updated>2009-06-26T04:50:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2009/06/26/1511584.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2009/06/26/1511584.html"/><content type="text">// ===========================================================// 作者：ZhiQiao | MSN:zhiqiao84☆hotmail.com// 日期： 2009/06/25// 作用： 实用工具类，用于简化存储过程的调用。// 备注： .Net Framework 2.0 SQL Server 2005// =====...</content></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2009/06/18/1505555.html</id><title type="text">Winform控件拖动</title><summary type="text">给要实现拖动的控件添加如下的 MouseDown 和 MouseMove 事件即可。privatePointstartPoint;privatevoidMouseDown(objectsender,MouseEventArgse){startPoint.X=e.X;startPoint.Y=e.Y;}privatevoidMouseMove(objectsender,MouseEventArgse...</summary><published>2009-06-18T02:00:00Z</published><updated>2009-06-18T02:00:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2009/06/18/1505555.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2009/06/18/1505555.html"/><content type="text">给要实现拖动的控件添加如下的 MouseDown 和 MouseMove 事件即可。privatePointstartPoint;privatevoidMouseDown(objectsender,MouseEventArgse){startPoint.X=e.X;startPoint.Y=e.Y;}privatevoidMouseMove(objectsender,MouseEventArgse...</content></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2009/05/13/1455659.html</id><title type="text">TreeView查找</title><summary type="text">使用时，在界面上添加一个 TextBox 用于输入查询字符串，再添加一个 ButtonprivatevoidsearchButton_Click(objectsender,EventArgse){tree.SelectedNode=Functions.TreeSearch(tree.SelectedNode,searchTextBox.Text);tree.Focus();}下载源代码</summary><published>2009-05-13T02:07:00Z</published><updated>2009-05-13T02:07:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2009/05/13/1455659.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2009/05/13/1455659.html"/><content type="text">使用时，在界面上添加一个 TextBox 用于输入查询字符串，再添加一个 ButtonprivatevoidsearchButton_Click(objectsender,EventArgse){tree.SelectedNode=Functions.TreeSearch(tree.SelectedNode,searchTextBox.Text);tree.Focus();}下载源代码</content></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2008/11/12/1331932.html</id><title type="text">在 DataGridView 中实现类似 Ctrl + F 的查找功能</title><summary type="text"/><published>2008-11-12T04:05:00Z</published><updated>2008-11-12T04:05:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2008/11/12/1331932.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2008/11/12/1331932.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2008/11/06/1327791.html</id><title type="text">正则表达式使用</title><summary type="text"/><published>2008-11-06T01:16:00Z</published><updated>2008-11-06T01:16:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2008/11/06/1327791.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2008/11/06/1327791.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2008/10/28/1321097.html</id><title type="text">Collapsing margins</title><summary type="text"/><published>2008-10-28T03:08:00Z</published><updated>2008-10-28T03:08:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2008/10/28/1321097.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2008/10/28/1321097.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2008/10/21/1316029.html</id><title type="text">CSS基础</title><summary type="text"/><published>2008-10-21T08:17:00Z</published><updated>2008-10-21T08:17:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2008/10/21/1316029.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2008/10/21/1316029.html"/><content type="text"/></entry><entry><id>http://www.cnblogs.com/JoeDZ/archive/2008/10/14/1310487.html</id><title type="text">打开 mdi 窗体的子窗体</title><summary type="text"/><published>2008-10-14T00:26:00Z</published><updated>2008-10-14T00:26:00Z</updated><author><name>NanKe Sir's Blog</name><uri>http://www.cnblogs.com/JoeDZ/</uri></author><link rel="alternate" href="http://www.cnblogs.com/JoeDZ/archive/2008/10/14/1310487.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/JoeDZ/archive/2008/10/14/1310487.html"/><content type="text"/></entry></feed>
