<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_Peach Garden</title><subtitle type="text"/><id>http://feed.cnblogs.com/blog/u/38702/rss</id><updated>2009-07-02T03:30:10Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/38702/rss"/><entry><id>http://www.cnblogs.com/peach/archive/2009/07/02/1515336.html</id><title type="text">with复合结构小结</title><summary type="text">摘自：http://blog.hjenglish.com/hsiangshun/archive/2008/12/18/1247109.html	不少学生对句中with结构的用法不甚清楚，现总结如下。 with结构也称为with复合结构，是由with+复合宾语组成，常在句中做状语，表示谓语动作发生的伴随情况、时间、原因、方式等。其构成有下列几种情形： 1、with + 名词 (或代词) + 现在分词...</summary><published>2009-07-02T03:25:00Z</published><updated>2009-07-02T03:25:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2009/07/02/1515336.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2009/07/02/1515336.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2009/06/10/1500242.html</id><title type="text">Oracle过程及函数的参数模式</title><summary type="text">一、In、out、in out模式在Oracle中过程与函数都可以有参数，参数的类型可以指定为in、out、in out三种模式。三种参数的具体说明，如下图所示：（1）in模式in模式是引用传递。调用过程时实际参数将值以引用方式传递给存储过程的形式参数，形式参数在过程中是只读模式的，也就是说：只能通过形式参数读取到实际参数的值。当过程执行完毕后，实际参数的值不会发生任何变化。过程：create o...</summary><published>2009-06-10T02:53:00Z</published><updated>2009-06-10T02:53:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2009/06/10/1500242.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2009/06/10/1500242.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2009/06/09/1499338.html</id><title type="text">Oracle使用技巧及PL/SQL Developer配置</title><summary type="text">摘自：http://livenzhao.spaces.live.com/blog/cns!6E368BE9F6DDD872!595.entry ·PL/SQL Developer使用技巧 	   1、PL/SQL Developer记住登陆密码 在使用PL/SQL Developer时，为了工作方便希望PL/SQL Developer记住登录Oracle的用户名和密码； 设置方法：PL/SQL D...</summary><published>2009-06-09T01:52:00Z</published><updated>2009-06-09T01:52:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2009/06/09/1499338.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2009/06/09/1499338.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2009/01/24/1380606.html</id><title type="text">IE6.0中getElementsByName和getElementById的bug</title><summary type="text">IE6.0的getElementsByName()和getElementById() bug1、document.getElementsByName(name)IE6.0中的bug： 会将id等于给定的name值的元素也返回。&amp;lt;script type="text/javascript"&amp;gt;function getCount(){ var objs=document.getElements...</summary><published>2009-01-23T16:48:00Z</published><updated>2009-01-23T16:48:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2009/01/24/1380606.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2009/01/24/1380606.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2008/12/26/1363090.html</id><title type="text">招行专业版通讯问题</title><summary type="text">解决办法</summary><published>2008-12-26T07:39:00Z</published><updated>2008-12-26T07:39:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2008/12/26/1363090.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2008/12/26/1363090.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2008/11/26/1341749.html</id><title type="text">C#中的空对象使用</title><summary type="text">注：以String 类型为例 不允许使用未赋值的变量； //未赋值情况 string str1; string str2 = "%"; str2 = str1 + str2;//错误，使用了为赋值的局部变量str1，编译无法通过。 Console.WriteLine(str2); 结果：（编译时报错）  空对象（null）可以被使用，但不能被"."(点操作)； //使用空对象，但不"."点操作 s...</summary><published>2008-11-26T12:13:00Z</published><updated>2008-11-26T12:13:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2008/11/26/1341749.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2008/11/26/1341749.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2008/11/22/1338905.html</id><title type="text">[转]Dynamic and static Rectangle in WPF</title><summary type="text">此文转载自：Raj Kumar						In geometry, a rectangle is defined as a quadrilateral where all four of its angles are right angles (90 degrees). 												The &amp;lt;Rectangle /&amp;gt; element of XAML draws a rect...</summary><published>2008-11-22T05:12:00Z</published><updated>2008-11-22T05:12:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2008/11/22/1338905.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2008/11/22/1338905.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2008/11/19/1336879.html</id><title type="text">Word2007发布文章成功</title><summary type="text">很早以前就看见dudu的文章说能通过word2007来发布博客园文章，当时因为代理没有设置好，试了试没有弄好。今天再此看见网络上好多朋友多这个功能的赞叹，于是有自习配置了一下成功了。关键还是上次代理的问题。首先	如果是通过代理上网，需要设置好IE的代理。然后打开word，点击，发布，博客(B);注：对于使用代理的用户，这时如果弹出了代理对话框，一定要填写好代理用户名、密码；如果没有弹出，也要在进行...</summary><published>2008-11-19T10:49:00Z</published><updated>2008-11-19T10:49:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2008/11/19/1336879.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2008/11/19/1336879.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2008/11/17/1335251.html</id><title type="text">优秀文章链接</title><summary type="text">（如果您的文章被我收集，有不愿意的请给我留言）·WPF		（1）、控件类		1、Windows Presentation Foundation (WPF)	2、WPF Contrib		（2）、数据绑定、数据验证类			1、WPF学习之数据绑定	2、WPF学习之绑定—Validation Rule和Binding Group	3、WPF学习之使用DataGrid	4、WPF – 使用触发器	 ·W...</summary><published>2008-11-17T09:16:00Z</published><updated>2008-11-17T09:16:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2008/11/17/1335251.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2008/11/17/1335251.html"/></entry><entry><id>http://www.cnblogs.com/peach/archive/2008/11/17/1335036.html</id><title type="text">【摘】40 种网页技巧</title><summary type="text">本文摘自网络，地址不详。1. oncontextmenu="window.event.returnValue=false" 将彻底屏蔽鼠标右键
&amp;lt;table border oncontextmenu=return(false)&amp;gt;&amp;lt;td&amp;gt;no&amp;lt;/table&amp;gt; 可用于Table
2. &amp;lt;body onselectstart="return false"&amp;gt;...</summary><published>2008-11-17T04:42:00Z</published><updated>2008-11-17T04:42:00Z</updated><author><name>Peach</name><uri>http://www.cnblogs.com/peach/</uri></author><link rel="alternate" href="http://www.cnblogs.com/peach/archive/2008/11/17/1335036.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/peach/archive/2008/11/17/1335036.html"/></entry></feed>
