<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_努力学习</title><subtitle type="text">进步进步</subtitle><id>http://feed.cnblogs.com/blog/u/19295/rss</id><updated>2007-06-02T14:02:52Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><generator>feed.cnblogs.com</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/19295/rss"/><entry><id>http://www.cnblogs.com/qianinsun/archive/2007/03/26/687801.html</id><title type="text">如何取消开机自动运行程序</title><summary type="text">方法一、很多程序都会在注册表的Run中生成数据，解决的方法是运行regedit,找到 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run,删除右边窗口的相关数据，就是软件的启动项。 方法二、在运行里输入“msconfig”命令，打开启动对话框，把要取消的动项目去掉勾选即可方法三、针对特定程序，在它...</summary><published>2007-03-26T00:02:00Z</published><updated>2007-03-26T00:02:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2007/03/26/687801.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2007/03/26/687801.html"/><content type="text">方法一、很多程序都会在注册表的Run中生成数据，解决的方法是运行regedit,找到 HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run,删除右边窗口的相关数据，就是软件的启动项。 方法二、在运行里输入“msconfig”命令，打开启动对话框，把要取消的动项目去掉勾选即可方法三、针对特定程序，在它...</content></entry><entry><id>http://www.cnblogs.com/qianinsun/archive/2006/12/08/586223.html</id><title type="text">TCP/IP5层模型及对应的协议</title><summary type="text">TCP/IP的层对应的TCP/IP协议 应用在各层的硬件设备应用层(Application)： 应用程序网关（application gateway） Telnet:远程登录（在应用层连接两部分应用程序） FTP（File Transfer Protocol）：文件传输协议 HTTP（Hyper Text Transfer Protocol）：超文本传输协议 SMTP（Simple Mail T...</summary><published>2006-12-08T03:34:00Z</published><updated>2006-12-08T03:34:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2006/12/08/586223.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2006/12/08/586223.html"/><content type="text">TCP/IP的层对应的TCP/IP协议 应用在各层的硬件设备应用层(Application)： 应用程序网关（application gateway） Telnet:远程登录（在应用层连接两部分应用程序） FTP（File Transfer Protocol）：文件传输协议 HTTP（Hyper Text Transfer Protocol）：超文本传输协议 SMTP（Simple Mail T...</content></entry><entry><id>http://www.cnblogs.com/qianinsun/archive/2006/12/01/579182.html</id><title type="text">vs.net 2005, 没有找到MSVCR80D.dll的完美解决方案 </title><summary type="text">问题描述：大部分的vs.net2005的用户在新建“win32项目－windows应用程序”的时候，新建的工程都通不过去，出现如下提示：Solutionto“MSVCR80D.dllnotfound”byhua.“没有找到MSVCR80D.dll，因此这个应用程序未能启动。重新安装应用程序可能会修复此问题。”的完美解决方案^_...</summary><published>2006-12-01T08:49:00Z</published><updated>2006-12-01T08:49:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2006/12/01/579182.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2006/12/01/579182.html"/><content type="text">问题描述：大部分的vs.net2005的用户在新建“win32项目－windows应用程序”的时候，新建的工程都通不过去，出现如下提示：Solutionto“MSVCR80D.dllnotfound”byhua.“没有找到MSVCR80D.dll，因此这个应用程序未能启动。重新安装应用程序可能会修复此问题。”的完美解决方案^_...</content></entry><entry><id>http://www.cnblogs.com/qianinsun/archive/2006/12/01/579165.html</id><title type="text">深入理解sizeof</title><summary type="text">最近在论坛里总有人问关于sizeof的问题，并且本人对这个问题也一直没有得到很好的解决，索性今天对它来个较为详细的总结，同时结合strlen进行比较，如果能对大家有点点帮助，这是我最大的欣慰了。一、好首先看看sizeof和strlen在MSDN上的定义：首先看一MSDN上如何对sizeof进行定义的：sizeof Operatorsizeof expressionThe sizeof keywor...</summary><published>2006-12-01T08:36:00Z</published><updated>2006-12-01T08:36:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2006/12/01/579165.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2006/12/01/579165.html"/><content type="text">最近在论坛里总有人问关于sizeof的问题，并且本人对这个问题也一直没有得到很好的解决，索性今天对它来个较为详细的总结，同时结合strlen进行比较，如果能对大家有点点帮助，这是我最大的欣慰了。一、好首先看看sizeof和strlen在MSDN上的定义：首先看一MSDN上如何对sizeof进行定义的：sizeof Operatorsizeof expressionThe sizeof keywor...</content></entry><entry><id>http://www.cnblogs.com/qianinsun/archive/2006/11/15/560681.html</id><title type="text">VC6.0:Setup was unable to create a DCOM user account</title><summary type="text">BUG：Visual Studio 6.0 中出现错误消息“Setup Was Unable to Create a DCOM User Account”（安装程序无法创建 DCOM 用户帐户）症状当您运行 Visual Studio 6.0 安装程序时，可能会收到下面的错误消息：Setup was unable to create a DCOM user account ...</summary><published>2006-11-15T01:32:00Z</published><updated>2006-11-15T01:32:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2006/11/15/560681.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2006/11/15/560681.html"/><content type="text">BUG：Visual Studio 6.0 中出现错误消息“Setup Was Unable to Create a DCOM User Account”（安装程序无法创建 DCOM 用户帐户）症状当您运行 Visual Studio 6.0 安装程序时，可能会收到下面的错误消息：Setup was unable to create a DCOM user account ...</content></entry><entry><id>http://www.cnblogs.com/qianinsun/archive/2006/06/14/425325.html</id><title type="text">浅析.NET开发中代理模式的使用（转载）</title><summary type="text">当我们需要使用的对象很复杂或者需要很长时间去构造，这时就可以使用代理模式(Proxy)。例如：如果构建一个对象很耗费时间和计算机资源，代理模式(Proxy)允许我们控制这种情况，直到我们需要使用实际的对象。一个代理(Proxy)通常包含和将要使用的对象同样的方法，一旦开始使用这个对象，这些方法将通过代理(Proxy)传递给实际的对象。一些可以使用代理模式(Proxy)的情况：1、一个对象，...</summary><published>2006-06-14T00:07:00Z</published><updated>2006-06-14T00:07:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2006/06/14/425325.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2006/06/14/425325.html"/><content type="text">当我们需要使用的对象很复杂或者需要很长时间去构造，这时就可以使用代理模式(Proxy)。例如：如果构建一个对象很耗费时间和计算机资源，代理模式(Proxy)允许我们控制这种情况，直到我们需要使用实际的对象。一个代理(Proxy)通常包含和将要使用的对象同样的方法，一旦开始使用这个对象，这些方法将通过代理(Proxy)传递给实际的对象。一些可以使用代理模式(Proxy)的情况：1、一个对象，...</content></entry><entry><id>http://www.cnblogs.com/qianinsun/archive/2006/06/14/425323.html</id><title type="text">Windows mobile 5.0 访问Web service 不能建立网络连接的问题</title><summary type="text">这是困扰我好几天的问题，前天终于解决了。错误：在 Add Web Reference 时，不能使用127.0.0.0或localhost为名。原因：模拟器使用的是虚机，模拟的是一台真正的机器， 所以localhost指的是模拟器本身，PIE比较智能，看能Localhost就会去连Usb线的那台机器。（网友解答）但可能在哪里设置一下会取消这个限制，因为张欣在webcast 060331的讲座的de...</summary><published>2006-06-14T00:05:00Z</published><updated>2006-06-14T00:05:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2006/06/14/425323.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2006/06/14/425323.html"/><content type="text">这是困扰我好几天的问题，前天终于解决了。错误：在 Add Web Reference 时，不能使用127.0.0.0或localhost为名。原因：模拟器使用的是虚机，模拟的是一台真正的机器， 所以localhost指的是模拟器本身，PIE比较智能，看能Localhost就会去连Usb线的那台机器。（网友解答）但可能在哪里设置一下会取消这个限制，因为张欣在webcast 060331的讲座的de...</content></entry><entry><id>http://www.cnblogs.com/qianinsun/archive/2006/06/08/420218.html</id><title type="text">HOST表和Terminal Service</title><summary type="text">这两天用vs2005创建web service 时一直被两个错误困扰：=〉[错误1]：目前网站已在HOST表中被重定向。 办法：Hosts表文件在系统中的位置，Windows 9X系统存放在C:\Windows目录，Windows NT/2000系统，其保存在c:\winnt\system32\drivers\etc目录，Windows XP系统保存在c:\windows\system32\dri...</summary><published>2006-06-08T00:44:00Z</published><updated>2006-06-08T00:44:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2006/06/08/420218.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2006/06/08/420218.html"/><content type="text">这两天用vs2005创建web service 时一直被两个错误困扰：=〉[错误1]：目前网站已在HOST表中被重定向。 办法：Hosts表文件在系统中的位置，Windows 9X系统存放在C:\Windows目录，Windows NT/2000系统，其保存在c:\winnt\system32\drivers\etc目录，Windows XP系统保存在c:\windows\system32\dri...</content></entry><entry><id>http://www.cnblogs.com/qianinsun/archive/2006/06/04/417100.html</id><title type="text">恭喜 今天刚开通!</title><summary type="text">以后要常来这里学习!!</summary><published>2006-06-04T09:40:00Z</published><updated>2006-06-04T09:40:00Z</updated><author><name>李相前</name><uri>http://www.cnblogs.com/qianinsun/</uri></author><link rel="alternate" href="http://www.cnblogs.com/qianinsun/archive/2006/06/04/417100.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/qianinsun/archive/2006/06/04/417100.html"/><content type="text">以后要常来这里学习!!</content></entry></feed>
