<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/chinahuyong" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/chinahuyong" type="application/rss+xml"></fs:self_link><lastBuildDate>Tue, 23 Jun 2009 13:41:00 GMT</lastBuildDate><title>Money&amp;amp;You</title><description>Software development,Market marketing &amp;amp;  Business management</description><link>http://blog.csdn.net/chinahuyong/</link><item><title>经典SQL语句大全</title><link>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291427.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4291427.aspx</wfw:comment><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4291427.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4291427</trackback:ping><description>经典SQL语句大全

下列语句部分是Mssql语句，不可以在access中使用。 
　　SQL分类：
　　DDL—数据定义语言(CREATE，ALTER，DROP，DECLARE) 
　　DML—数据操纵语言(SELECT，DELETE，UPDATE，INSERT) 
　　DCL—数据控制语言(GRANT，REVOKE，COMMIT，ROLLBACK)
　　首先,简要介绍基础语句：
　　1、说明：创建数据库
CREATE DATABASE database-name
　　2、说明：删除数据库
drop database dbname
　　3、说明：备份sql server
　　--- 创建 备份数据的 device
USE master
EXEC sp_addumpdevice 'disk', 'testBack', 'c:\mssql7backup\MyNwind_1.dat'
　　--- 开始 备份
BACKUP DATABASE pubs TO testBack
　　4、说明：创建新表
create table tabname(col1 ty&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4291427.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236617646/chinahuyong/csdn.net/s.gif?r=http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291427.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617646/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617646/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 23 Jun 2009 21:41:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291427.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291427.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291427.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617646/5475026</fs:itemid></item><item><title>C#ADO.NET操作数据代码汇总</title><link>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291327.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4291327.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4291327.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4291327</trackback:ping><description>C#ADO.NET操作数据代码汇总
一．用SqlConnection连接SQL Server

1..加入命名空间

using System.Data.SqlClient;

2.连接数据库

SqlConnection myConnection = new SqlConnection();

myConnection.ConnectionString = &quot;user id=sa;password=sinofindb;initial 

catalog=test;data source=127.0.0.1;Connect Timeout=30&quot;;

myConnection.Open();

改进（更通用）的方法：

string MySqlConnection=&quot;user id=sa;password=sinofindb;Database =test;data 

source=127.0.0.1;Connect Timeout=30&quot;;

SqlConnection myConnection = new SqlConnection(M&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4291327.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236617647/chinahuyong/csdn.net/s.gif?r=http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291327.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617647/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617647/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 23 Jun 2009 20:59:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291327.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291327.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4291327.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617647/5475026</fs:itemid></item><item><title>C#如何进行多线程编程</title><link>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4290888.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4290888.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4290888.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4290888</trackback:ping><description>C#如何进行多线程编程 
由于多线程编程非常复杂，这个小例子只能算是一个入门线的知识点吧 

首先建一个应用程序项目，命名为ThreadExample，在窗体上放一个文本框(textBox1) ，一个标签(lblResult)，再放两个按钮，分别命名为btnStart、btnStop。
&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4290888.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236617648/chinahuyong/csdn.net/s.gif?r=http://blog.csdn.net/chinahuyong/archive/2009/06/23/4290888.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617648/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617648/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 23 Jun 2009 18:39:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4290888.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/06/23/4290888.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/06/23/4290888.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617648/5475026</fs:itemid></item><item><title>C#连接MySql数据库的方法</title><link>http://blog.csdn.net/chinahuyong/archive/2009/06/16/4272618.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4272618.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4272618.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4272618</trackback:ping><description>&lt;br /&gt; 用MySQLDriverCS连接MySQL数据库&lt;br /&gt;    先下载和安装MySQLDriverCS，地址：&lt;br /&gt;    http://sourceforge.net/projects/mysqldrivercs/&lt;br /&gt;    在安装文件夹下面找到MySQLDriver.dll，然后将MySQLDriver.dll添加引用到项目中&lt;br /&gt;    注：我下载的是版本是 MySQLDriverCS-n-EasyQueryTools-4.0.1-DotNet2.0.exe&lt;br /&gt;    using System;&lt;br /&gt;    using System.Collections.Generic;&lt;br /&gt;    using System.ComponentModel;&lt;br /&gt;    using System.Data;&lt;br /&gt;    using System.Data.Odbc;&lt;br /&gt;    using System.Drawing;&lt;br /&gt;    using System.Linq;&lt;br /&gt;    using System.&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4272618.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236617649/chinahuyong/csdn.net/s.gif?r=http://blog.csdn.net/chinahuyong/archive/2009/06/16/4272618.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617649/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617649/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 16 Jun 2009 19:08:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/06/16/4272618.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/06/16/4272618.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/06/16/4272618.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617649/5475026</fs:itemid></item><item><title>关键字: datagridview 属性 说明</title><link>http://blog.csdn.net/chinahuyong/archive/2009/06/05/4245827.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4245827.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4245827.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4245827</trackback:ping><description>&lt;br /&gt;关键字: datagridview 属性 说明①　取得或者修改当前单元格的内容 &lt;br /&gt;②　设定单元格只读 &lt;br /&gt;③　不显示最下面的新行 &lt;br /&gt;④　判断新增行 &lt;br /&gt;⑤　行的用户删除操作的自定义 &lt;br /&gt;⑥　行、列的隐藏和删除 &lt;br /&gt;⑦　禁止列或者行的Resize &lt;br /&gt;⑧　列宽和行高以及列头的高度和行头的宽度的自动调整 &lt;br /&gt;⑨　冻结列或行 &lt;br /&gt;⑩　列顺序的调整 &lt;br /&gt;⑪　行头列头的单元格 &lt;br /&gt;⑫　剪切板的操作 &lt;br /&gt;⑬　单元格的ToolTip的设置 &lt;br /&gt;⑭　右键菜单（ContextMenuStrip）的设置 &lt;br /&gt;⑮　单元格的边框、 网格线样式的设定 &lt;br /&gt;⑯　单元格表示值的设定 &lt;br /&gt;⑰　用户输入时，单元格输入值的设定 &lt;br /&gt;⑱　设定新加行的默认值 &lt;br /&gt;&lt;br /&gt;①　DataGridView  取得或者修改当前单元格的内容： &lt;br /&gt;&lt;br /&gt;GO TO TOP &lt;br /&gt;&lt;br /&gt;当前单元格指的是 DataGridView 焦点所在的单元格，它&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4245827.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236617650/chinahuyong/csdn.net/s.gif?r=http://blog.csdn.net/chinahuyong/archive/2009/06/05/4245827.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617650/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617650/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Sat, 06 Jun 2009 01:41:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/06/05/4245827.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/06/05/4245827.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/06/05/4245827.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617650/5475026</fs:itemid></item><item><title>C#日期格式化</title><link>http://blog.csdn.net/chinahuyong/archive/2009/06/05/4244442.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4244442.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4244442.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4244442</trackback:ping><description>C#日期格式化日期转化一

为了达到不同的显示效果有时，我们需要对时间进行转化，默认格式为：2007-01-03 14:33:34 ，要转化为其他格式，要用到DateTime.ToString的方法(String, IFormatProvider)，如下所示：

using System;
using System.Globalization;
String format=&quot;D&quot;;
DateTime date=DataTime,Now;
Response.Write(date.ToString(format, DateTimeFormatInfo.InvariantInfo));

结果输出
Thursday, June 16, 2005

参数format格式详细用法：

格式字符 关联属性/说明 
d ShortDatePattern 
D LongDatePattern 
f 完整日期和时间（长日期和短时间） 
F FullDateTimePattern（长日期和长时间） 
g 常规（短日期和短时间） 
G 常规（短日期和长时间） 
m&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4244442.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/236617651/chinahuyong/csdn.net/s.gif?r=http://blog.csdn.net/chinahuyong/archive/2009/06/05/4244442.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617651/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617651/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 05 Jun 2009 19:00:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/06/05/4244442.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/06/05/4244442.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/06/05/4244442.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617651/5475026</fs:itemid></item><item><title>简单实用的c++快速排序模板类</title><link>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076579.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4076579.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4076579.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4076579</trackback:ping><description>（一）目标
　　在实际问题的解决过程中，我们发现，很多问题都可以归结为对数据的排序和查询。而查询的效率则在很大程度上依赖于排序的效率；尤其是在数据量达到海量级的时候。因此，设计一个有效的排序算法是至关重要的。本文设计了一个通用的c++ quicksort 模板类。通过简单的提供一个Data类，可以实现任意数据的快速排序算法，提高了开发效率。
　　（二）快速排序算法的思想
　　最基本的快速排序的思想是基于分治策略的：
　　对于输入的子序列L[p..r]，如果规模足够小则直接进行排序，否则分三步处理：
　　1 分解(Divide)：将输入的序列L[p..r]划分成两个非空子序列L[p..q]和L[q+1..r]， 使L[p..q]中任一元素的值不大于L[q+1..r]中任一元素的值。
　　2 递归求解(Conquer)：通过递归调用快速排序算法分别对L[p..q]和L[q+1..r]进行排序。
　　3 合并(Merge)：由于对分解出的两个子序列的排序是就地进行的， 所以在L[p..q]和L[q+1..r]都排好序后不需要执行任何计算L[p..r]就已排好序。
　　（三）准&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4076579.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617652/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617652/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 16 Apr 2009 01:30:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076579.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076579.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076579.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617652/5475026</fs:itemid></item><item><title>C语言中的类模拟（C++编程思想）</title><link>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076577.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4076577.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4076577.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4076577</trackback:ping><description>C语言中的类模拟（C++编程思想）
　　 在面向对象的语言里面，出现了类的概念。这是编程思想的一种进化。所谓类：是对特定数据的特定操作的集合体。所以说类包含了两个范畴：数据和操作。而C语言中的struct仅仅是数据的集合
　　1．实例：下面先从一个小例子看起
　　#ifndef C_Class
　　 #define C_Class struct
　　#endif
　　C_Class A {
　　 C_Class A *A_this;
　　 void (*Foo)(C_Class A *A_this);
　　 int a;
　　 int b;
　　};
　　C_Class B{ //B继承了A
　　 C_Class B *B_this; //顺序很重要
　　 void (*Foo)(C_Class B *Bthis); //虚函数
　　 int a;
　　 int b;
　　 int c;
　　};
　　
　　void B_F2(C_Class B *Bthis)
　　{
　　 printf(&quot;It is B_Fun\n&quot;);
　　}
　　&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4076577.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617653/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617653/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 16 Apr 2009 01:29:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076577.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076577.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076577.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617653/5475026</fs:itemid></item><item><title>高质量C++/C编程指南学习笔记(上)</title><link>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076569.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4076569.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4076569.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4076569</trackback:ping><description>　　《高质量C++/C编程指南》是 林锐 博士 写的，现在已经出书了。以下是我在学习中的一些笔记，贴给大家有空看看。
　　1、 关于版权和版本的声明
　　版权和版本的声明位于头文件和定义文件的开头。示例如下：
　　/** Copyright (c) 2001,上海贝尔有限公司网络应用事业部
　　* All rights reserved.
　　* 
　　* 文件名称：filename.h
　　* 文件标识：见配置管理计划书
　　* 摘 要：简要描述本文件的内容
　　* 
　　* 当前版本：1.1
　　* 作 者：输入作者（或修改者）名字
　　* 完成日期：2001年7月20日
　　*
　　* 取代版本：1.0 
　　* 原作者 ：输入原作者（或修改者）名字
　　* 完成日期：2001年5月10日
　　*/
　　2、 关于头文件
　　Ø 为了防止头文件被重复引用，应当用ifndef/define/endif结构产生预处理块。
　　Ø 头文件中只存放“声明”而不存放“定义”，包括内联函数最好也放在定义文件中。
　　Ø 尽可能少地使用全局变量，尽量不&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4076569.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617654/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617654/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 16 Apr 2009 01:28:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076569.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076569.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076569.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617654/5475026</fs:itemid></item><item><title>Win32页上的所有控件属性与方法</title><link>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076452.aspx</link><wfw:comment>http://blog.csdn.net/chinahuyong/comments/4076452.aspx</wfw:comment><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/chinahuyong/comments/commentRss/4076452.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=4076452</trackback:ping><description>Win32页上的所有控件。该页控件是在32位Win系统中的一些基本控件，如果你选择开发CLX程序，则在控件面板上不会显示该页
 
 
 
 
 

TTabControl
属性
　DisplayRect：只定该控件客户区的一个矩形
  HotTrack：设置当鼠标经过页标签时，它的字是否有变化。如果为True，是字会变成蓝色
Images：为每个页标签添加一个图片
MultiLine：如果总页标签的长度大于该控件的宽度时，是否允许多行显示
MultiSelect：是否允许多选页标签。该属性只有当Style为tsFlatButtons或tsButtons时才有效
OwnerDraw：是否允许自己绘画该控件
RaggedRight：指定是否允许标签页伸展到控制宽度
ScrollOpposite：该属性设置将会使MultiLine设为True。当标签页的行数大于1时，当单击其它页时，在它下面的页会自动翻动该控件的底部
Style：设置该控件的样式，大家一试就会知道
TabHeight：设置页标签的高度
TabIndex：反映当前标签页的索引号。该号从0开&lt;img src =&quot;http://blog.csdn.net/chinahuyong/aggbug/4076452.aspx&quot; width = &quot;1&quot; height = &quot;1&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/chinahuyong/236617655/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/chinahuyong/236617655/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 16 Apr 2009 01:00:00 +0800</pubDate><author>EricHu</author><comments>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076452.aspx#Feedback</comments><guid isPermaLink="false">http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076452.aspx</guid><dc:creator>EricHu</dc:creator><fs:srclink>http://blog.csdn.net/chinahuyong/archive/2009/04/15/4076452.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/chinahuyong/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/chinahuyong/~7365511/236617655/5475026</fs:itemid></item></channel></rss>