<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>摄氏37度 - 技术类</title><link>http://blog.csdn.net/lzyzuixin/category/362513.aspx</link><description>C/C++ .NET UML GPRS GPS X等技术交流</description><dc:language>zh-CN</dc:language><lastUpdateTime>Wed, 19 Nov 2008 11:14:00 GMT</lastUpdateTime><ttl>60</ttl><item><dc:creator>摄氏37度</dc:creator><title>WPARAM与LPARAM的区别</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/11/19/3333430.aspx</link><pubDate>Wed, 19 Nov 2008 11:12:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/11/19/3333430.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/3333430.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/11/19/3333430.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/3333430.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3333430</trackback:ping><description>WPARAM与LPARAM的区别。具体是这么说：“在Win 3.x中，WPARAM是16位的，而LPARAM是32位的，两者有明显的区别。因为地址通常是32位的，所以LPARAM 被用来传递地址，这个习惯在Win32 API中仍然能够看到。在Win32 API中，WPARAM和LPARAM都是32位，所以没有什么本质的区 别。Windows的消息必须参考帮助文件才能知道具体的含义。如果是你定义的消息，愿意怎么使这两个参数都行。但是习惯上，我们愿意使用LPARAM传 递地址，而WPARAM传递其他参数。”&lt;br /&gt;&lt;br /&gt;看一个例子就明白了： 
 程序代码*在对话框中取出数据，并向其他窗口发送消息和数据，将数据指针作为一个参数发送*/&lt;br /&gt;void CTestDlg2::OnCommBtn()&lt;br /&gt;{&lt;br /&gt;     char szOut[30];&lt;br /&gt;      GetDlgItemText(IDC_OUT,szOut,30);&lt;br /&gt;      m_pParent-&gt;SendMessage(WM_DLG_NOTIFY,(WPARAM)szOut);&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/3333430.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>跨数据库Copy的一个类的代码</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/11/04/3216267.aspx</link><pubDate>Tue, 04 Nov 2008 09:52:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/11/04/3216267.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/3216267.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/11/04/3216267.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/3216267.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3216267</trackback:ping><description>&lt;br /&gt;跨数据库Copy的一个类的代码 希望对大家能有所帮助&lt;br /&gt;#include "StdAfx.h"&lt;br /&gt;#include ".\dbcopyclass.h"&lt;br /&gt;CDbCopyClass::CDbCopyClass(void)&lt;br /&gt;{&lt;br /&gt; ::CoInitialize(NULL);&lt;br /&gt; pconn.CreateInstance(__uuidof(Connection));&lt;br /&gt; pSourceConn.CreateInstance(__uuidof(Connection));&lt;br /&gt; prs.CreateInstance(__uuidof(Recordset));&lt;br /&gt; m_pCmd.CreateInstance(__uuidof(Command));&lt;br /&gt; m_SourceRs.CreateInstance(__uuidof(Recordset));&lt;br /&gt; m_DesRs.CreateInstance(__uuidof(Recordset));&lt;br /&gt;/// m_fields.CreateInstanc&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/3216267.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>C++中rand随机数的用法</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/10/16/3086076.aspx</link><pubDate>Thu, 16 Oct 2008 15:53:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/10/16/3086076.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/3086076.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/10/16/3086076.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/3086076.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=3086076</trackback:ping><description>&lt;br /&gt;一、C++中不能使用random()函数     random函数不是ANSI C标准，不能在gcc,vc等编译器下编译通过。 可改用C++下的rand函数来实现。     1、C++标准函数库提供一随机数生成器rand，返回0－RAND_MAX之间均匀分布的伪随机整数。 RAND_MAX必须至少为32767。rand()函数不接受参数，默认以1为种子（即起始值）。 随机数生成器总是以相同的种子开始，所以形成的伪随机数列也相同，失去了随机意义。（但这样便于程序调试） &lt;br /&gt;      2、C++中另一函数srand（），可以指定不同的数（无符号整数变元）为种子。但是如果种子相同，伪随机数列也相同。一个办法是让用户输入种子，但是仍然不理想。 &lt;br /&gt;     3、 比较理想的是用变化的数，比如时间来作为随机数生成器的种子。 time的值每时每刻都不同。所以种子不同，所以，产生的随机数也不同。 &lt;br /&gt;// C++随机函数（VC program）&lt;br /&gt;#include &lt;br /&gt;#include &lt;br /&gt;#in&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/3086076.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>姑苏慕容与软件开发 </title><link>http://blog.csdn.net/lzyzuixin/archive/2008/09/17/2942883.aspx</link><pubDate>Wed, 17 Sep 2008 15:44:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/09/17/2942883.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2942883.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/09/17/2942883.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2942883.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2942883</trackback:ping><description>一，逆向工程&lt;br /&gt;&lt;br /&gt;那女子悠悠的道：“丐帮‘打狗棒法’与‘降龙十八掌’两大神技，是丐帮的不传之秘&lt;br /&gt;。你们‘还施水阁’和我家‘琅擐玉洞’的藏谱拼凑起来，也只一些残缺不全的棒法、&lt;br /&gt;掌法。运功的心法却全然没有。你家公子可怎生练？”阿朱道：“公子说道：这‘打狗&lt;br /&gt;棒法’的心法既是人创的，他为什么就想不出？有了棒法，自己再想了心法加上去，那&lt;br /&gt;也不难。”&lt;br /&gt;&lt;br /&gt;二，泛型算法&lt;br /&gt;&lt;br /&gt;外人不知底细，见到慕容氏“以彼之道，还施彼身”神乎其技，凡在致人死命之时，总&lt;br /&gt;是以对方的成名绝技加诸其身，显然天下各门各派的绝技，姑苏慕容氏无一不会，无一&lt;br /&gt;不精。其实武林中绝技千千万万，任他如何聪明渊博，决难将每一项绝技都学会了，何&lt;br /&gt;况既是绝技，自非朝夕之功所能练成。但慕容氏有了这一门巧妙无比的“斗转星移”之&lt;br /&gt;术，不论对方施出何种功夫来，都能将之转移力道，反击到对方自身。&lt;br /&gt;&lt;br /&gt;三，结对编程&lt;br /&gt;&lt;br /&gt;王语嫣低声道：“他第二剑从左侧刺来，你先抢到他右侧，在他‘天宗穴’上拍一掌。&lt;br /&gt;”果然那道士一剑不中，第二剑“清澈梅花”自左方刺到，段誉&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2942883.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>文件夹递归copy的源代码</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936541.aspx</link><pubDate>Tue, 16 Sep 2008 14:55:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936541.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2936541.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936541.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2936541.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2936541</trackback:ping><description>&lt;br /&gt;/***************************************************************************************************&lt;br /&gt;** 函数名  ：CopyFolder&lt;br /&gt;** 输  入  ：const CString &amp;desc 目的路径&lt;br /&gt;**           const CString &amp;source 源路径&lt;br /&gt;** 输    出：&lt;br /&gt;** 功能描述：文件夹递归copy&lt;br /&gt;** 全局变量：&lt;br /&gt;** 调用模块：&lt;br /&gt;** 作    者：刘志永&lt;br /&gt;** 日    期：2008-9-10&lt;br /&gt;** 修    改：&lt;br /&gt;** 日    期：&lt;br /&gt;** 版 &amp;nbsp&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2936541.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>写得蛮好的linux学习笔记</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936426.aspx</link><pubDate>Tue, 16 Sep 2008 14:30:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936426.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2936426.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936426.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2936426.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2936426</trackback:ping><description>linux目录架构 &lt;br /&gt;/       根目录 &lt;br /&gt;/bin         常用的命令   binary   file   的目錄 &lt;br /&gt;/boot       存放系统启动时必须读取的档案，包括核心   (kernel)   在内 &lt;br /&gt;          /boot/grub/menu.lst       GRUB设置 &lt;br /&gt;          /boot/vmlinuz       内核 &lt;br /&gt;          /boot/initrd           核心解壓縮所需   RAM   Disk &lt;br /&gt;/dev   &amp;nbs&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2936426.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>跨数据库表间数据Copy的源代码</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936320.aspx</link><pubDate>Tue, 16 Sep 2008 14:17:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936320.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2936320.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936320.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2936320.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2936320</trackback:ping><description>&lt;br /&gt;/***************************************************************************************************&lt;br /&gt;** 函数名  ：RestoreData&lt;br /&gt;** 输  入  ：const CString &amp;desc 目的数据库路径&lt;br /&gt;**           const CString &amp;source 源数据库路径&lt;br /&gt;** 输    出：&lt;br /&gt;** 功能描述：将源数据库中的内容导入到目的数据库中&lt;br /&gt;** 全局变量：&lt;br /&gt;** 调用模块：&lt;br /&gt;** 作    者：刘志永&lt;br /&gt;** 日    期：2008-9-10&lt;br /&gt;** 修    改：&lt;br /&gt;** 日    期：&lt;br /&gt;&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2936320.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>vc 右键菜单显示 </title><link>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936265.aspx</link><pubDate>Tue, 16 Sep 2008 14:07:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936265.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2936265.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936265.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2936265.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2936265</trackback:ping><description>&lt;br /&gt;鼠标右键添加菜单选项，实现起来很简单，但是在实际的适用当中也是相当实用的。&lt;br /&gt;代码实现如下：&lt;br /&gt;CMenu menu; &lt;br /&gt;menu.LoadMenu(IDR_MENU1); &lt;br /&gt;CMenu* pPopup = menu.GetSubMenu(0); &lt;br /&gt;ASSERT(pPopup != NULL); &lt;br /&gt;CPoint pt; &lt;br /&gt;GetCursorPos(&amp;pt); &lt;br /&gt;pPopup-&gt;TrackPopupMenu(TPM_LEFTALIGN | TPM_RIGHTBUTTON, pt.x, pt.y, this); &lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2936265.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>sqlserver连接及设置 </title><link>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936261.aspx</link><pubDate>Tue, 16 Sep 2008 14:06:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936261.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2936261.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/09/16/2936261.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2936261.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2936261</trackback:ping><description>&lt;br /&gt;SQLSERVER数据库连接的配置及数据集的设置&lt;br /&gt;&lt;br /&gt;HRESULT hr =S_FALSE;&lt;br /&gt;_RecordsetPtr m_QryRcdSet;&lt;br /&gt; _ConnectionPtr m_pConnection;&lt;br /&gt; hr =m_pConnection.CreateInstance("ADODB.Connection");&lt;br /&gt; if (FAILED(hr))&lt;br /&gt;  return FALSE;&lt;br /&gt;&lt;br /&gt; try&lt;br /&gt; {&lt;br /&gt;  m_pConnection-&gt;ConnectionTimeout =8;&lt;br /&gt;  CString strConnect = "Provider=SQLOLEDB.1;Data Sourc&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2936261.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>水晶报表分页汇总</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/09/14/2929586.aspx</link><pubDate>Sun, 14 Sep 2008 22:04:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/09/14/2929586.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2929586.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/09/14/2929586.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2929586.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2929586</trackback:ping><description>水晶报表分页汇总建三个公式字段，第一个(公式1)输入下面的公式：&lt;br /&gt;whileprintingrecords;&lt;br /&gt;global numbervar ptotal;&lt;br /&gt;ptotal:=0;&lt;br /&gt;第二个(公式2)输入下面的公式：&lt;br /&gt;whileprintingrecords;&lt;br /&gt;global numbervar ptotal;&lt;br /&gt;ptotal := ptotal + [要汇总的字段];&lt;br /&gt;如果要汇总的字段不是数字，就用tonumber()函数转换；&lt;br /&gt;第三个(公式3)输入下面的公式：&lt;br /&gt;whileprintingrecords;&lt;br /&gt;global numbervar ptotal;&lt;br /&gt;把公式1放在页眉，公式2放在详细资料，并隐藏公式1和公式2；把公式3放在页脚，格式公式3，设置为你要显示的格式。这样就行&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2929586.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>张亚勤领导力之“韧” 从科学家到商业领袖</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/09/12/2918231.aspx</link><pubDate>Fri, 12 Sep 2008 17:14:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/09/12/2918231.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2918231.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/09/12/2918231.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2918231.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2918231</trackback:ping><description>&lt;br /&gt;从神童，到科学家，再到商业领袖，42岁的张亚勤正经历着人生的转变。在&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2918231.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>用VC实现在TreeView中使用背景位图</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/08/05/2769164.aspx</link><pubDate>Tue, 05 Aug 2008 10:26:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/08/05/2769164.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2769164.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/08/05/2769164.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2769164.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2769164</trackback:ping><description>一、引言：&lt;br /&gt;&lt;br /&gt;　　对于TreeView控件的背景位图的实现，目前介绍的文章比较少，有人虽然实现了，但是在点击TREE时，背景闪动比较厉害。本人在参照别人代码的基础上，把它总结一下，同时解决了这个背景闪烁的问题。目前FLASHGET1.3版也实现了TREEVIEW的背景位图。大家可以参照一下。 &lt;br /&gt;&lt;br /&gt;　　本文程序运行效果如下图:&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;　　二、原理：&lt;br /&gt;&lt;br /&gt;　　因为WINDOWS标准TREEVIEW控件不支持背景位图，所以如果需要设置背景位图就需要先让其在内存CDC对象上对TREEVIEW缺省绘图，然后在选择背景位图，与缺省位图合成，即采用贴图的方式，把标准的TREEVIEW窗口贴在底图上&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2769164.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title> 	 如何在VC中使用自定义的SkinMagic控件？</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/07/23/2694825.aspx</link><pubDate>Wed, 23 Jul 2008 10:52:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/07/23/2694825.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2694825.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/07/23/2694825.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2694825.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2694825</trackback:ping><description> 在SkinMagic中自定义了一个控件皮肤，并且添加到皮肤文件（.smf）；但是，如何在vc程序中使用它呢？本文以CSplitterWnd为例子，说明使用方法。&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2694825.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>网络教程之小型组网</title><link>http://blog.csdn.net/lzyzuixin/archive/2008/07/12/2643550.aspx</link><pubDate>Sat, 12 Jul 2008 12:54:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/07/12/2643550.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2643550.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/07/12/2643550.aspx#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2643550.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2643550</trackback:ping><description>网络教程之小型组网 1,一台机器上网（直通线）

2,多台机器上网，使用宽带路由器（直通线）

3,多台机器上网，使用交换机。（直通线）

4,二台机器上网，使用双网卡（交叉线）

5,一台机器有无线网卡，或是两台机器都有无线网卡共享上网。（无线）
&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2643550.aspx" width = "1" height = "1" /&gt;</description></item><item><dc:creator>摄氏37度</dc:creator><title>经典C++面试题 </title><link>http://blog.csdn.net/lzyzuixin/archive/2008/07/04/2611538.aspx</link><pubDate>Fri, 04 Jul 2008 14:43:00 GMT</pubDate><guid>http://blog.csdn.net/lzyzuixin/archive/2008/07/04/2611538.aspx</guid><wfw:comment>http://blog.csdn.net/lzyzuixin/comments/2611538.aspx</wfw:comment><comments>http://blog.csdn.net/lzyzuixin/archive/2008/07/04/2611538.aspx#Feedback</comments><slash:comments>1</slash:comments><wfw:commentRss>http://blog.csdn.net/lzyzuixin/comments/commentRss/2611538.aspx</wfw:commentRss><trackback:ping>http://tb.blog.csdn.net/TrackBack.aspx?PostId=2611538</trackback:ping><description>非常经典的C++试题  如果你不看答案就能做对90%的话 去微软\IBM\GOOGLE\华为\中兴是件非常EASY的事情&lt;img src ="http://blog.csdn.net/lzyzuixin/aggbug/2611538.aspx" width = "1" height = "1" /&gt;</description></item></channel></rss>