<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_探索Net的生命</title><subtitle type="text">塑造Net的灵魂</subtitle><id>http://feed.cnblogs.com/blog/u/23296/rss</id><updated>2009-10-26T08:20:16Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/23296/rss"/><entry><id>http://www.cnblogs.com/xiaolin/archive/2009/10/26/1590050.html</id><title type="text">VBA之设置工作表标签的颜色</title><summary type="text">工作表标签[示例01]设置工作表标签的颜色SubSetSheetTabColor()MsgBox"设置当前工作表标签的颜色"ActiveSheet.Tab.ColorIndex=7EndSub[示例02]恢复工作表标签颜色SubSetSheetTabColorDefault()MsgBox"将当前工作表标签颜色设置为默认值"ActiveSheet.Tab.ColorIndex=-4142EndSu...</summary><published>2009-10-26T08:19:00Z</published><updated>2009-10-26T08:19:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2009/10/26/1590050.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2009/10/26/1590050.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2009/10/09/1579841.html</id><title type="text">VBA基本操作</title><summary type="text">确认所选单元格区域中是否有公式(HasFormula属性)Sub IfHasFormula()If Selection.HasFormula = True ThenMsgBox "所选单元格中都有公式"ElseMsgBox "所选单元格中，部分单元格没有公式"End IfEnd Sub公式单元格操作　获取与运算结果单元格有直接关系的单元格Sub CalRelationCell() pujipc电脑...</summary><published>2009-10-09T11:16:00Z</published><updated>2009-10-09T11:16:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2009/10/09/1579841.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2009/10/09/1579841.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2009/10/09/1579528.html</id><title type="text">VBA之Range,cells,offset,end 的区别</title><summary type="text">VBA里Range,cells,offset,end 的区别一.Range属性1.选择单个单元格(例如A5) Range("A5").Select2.选择一个单元格区域(例如A6:A10) Range("A6:A10").Select3.选择一些不相邻的单元格(例如A1,B6,C8) Range("A1,B6,C8").Select4.选择一些不相邻的单元格和单元格区域(例如A11:D11,B7,...</summary><published>2009-10-09T03:24:00Z</published><updated>2009-10-09T03:24:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2009/10/09/1579528.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2009/10/09/1579528.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2009/10/08/1579328.html</id><title type="text">VBA之CurrentRegion属性</title><summary type="text">CurrentRegion属性代表什么您可能经常在程序代码中看到CurrentRegion属性，它是一个非常有用的属性，返回活动单元格所在的周围由空行和空列组成的单元格区域(即通常所说的当前区域)，如图1所示。 图1具体地说，当前区域即活动单元格所在的矩形区域，该矩形区域的每一行和每一列中至少包含有一个数据，其周围是空行和空列，图1中列举了其中的4种情形(见蓝色阴影区域)。在当前区域范围内，不管活...</summary><published>2009-10-08T13:44:00Z</published><updated>2009-10-08T13:44:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2009/10/08/1579328.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2009/10/08/1579328.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2009/10/08/1579323.html</id><title type="text">VBA之FormulaR1C1属性</title><summary type="text">FormulaR1C1是公式输入方法 有中括号是相对于选定单元格的相对偏移量，"-"为向左或向上偏移，正数为右或下偏移。 无中括号为相对于选定单元格的绝对偏移量，没有负数 "R"和"C"待变&amp;#8220;行&amp;#8221;和&amp;#8220;列&amp;#8221; 如：选定单元格为C8 R[-1]C[-1]为B7单元格，行列都-1，R[1]C[2]为E9单元格，行+1，列+2 R1C1代表A1单元格，R5C6...</summary><published>2009-10-08T13:33:00Z</published><updated>2009-10-08T13:33:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2009/10/08/1579323.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2009/10/08/1579323.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2007/01/12/618569.html</id><title type="text">使用ASP.NET 2.0中的GridView控件</title><summary type="text">使用ASP.NET 2.0中的GridView控件</summary><published>2007-01-12T03:43:00Z</published><updated>2007-01-12T03:43:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2007/01/12/618569.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2007/01/12/618569.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2007/01/12/618555.html</id><title type="text">ASP.NET 2.0中使用Gridview控件的高级技巧</title><summary type="text">ASP.NET 2.0中使用Gridview控件的高级技巧</summary><published>2007-01-12T03:36:00Z</published><updated>2007-01-12T03:36:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2007/01/12/618555.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2007/01/12/618555.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2007/01/11/617273.html</id><title type="text">Asp.net 2.0 Treeview 无限级无刷新示例</title><summary type="text">Asp.net 2.0 Treeview 无限级无刷新示例</summary><published>2007-01-10T16:50:00Z</published><updated>2007-01-10T16:50:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2007/01/11/617273.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2007/01/11/617273.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2006/12/27/605394.html</id><title type="text">html基础 — area(图像的作用区域标记)</title><summary type="text">html基础 — area(图像的作用区域标记)</summary><published>2006-12-27T12:55:00Z</published><updated>2006-12-27T12:55:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2006/12/27/605394.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2006/12/27/605394.html"/></entry><entry><id>http://www.cnblogs.com/xiaolin/archive/2006/12/20/597935.html</id><title type="text">AutoPostBack 属性 及 Page.IsPostBack 属性</title><summary type="text">Page.IsPostBack 属性　　Page.IsPostBack 是用来检查目前网页是否为第一次加载。 当使用者第一次浏览这个网页时Page.IsPostBack 会传回False，不是第一次浏览这个网页时就传回True； 所以当我们在Page_Load 事件中就可以使用这个属性来避免做一些重复的动作。下列范例利用Page.IsPostBack 属性来判断网页是不是第一次载入：&amp;lt;Htm...</summary><published>2006-12-20T05:24:00Z</published><updated>2006-12-20T05:24:00Z</updated><author><name>小淋</name><uri>http://www.cnblogs.com/xiaolin/</uri></author><link rel="alternate" href="http://www.cnblogs.com/xiaolin/archive/2006/12/20/597935.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/xiaolin/archive/2006/12/20/597935.html"/></entry></feed>
