<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>津津有味Jjuv Blog</title>
	<atom:link href="http://blog.jjuv.com/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.jjuv.com</link>
	<description></description>
	<lastBuildDate>Sun, 18 Apr 2010 11:26:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>更改Total Commander的配置文件保存地址</title>
		<link>http://blog.jjuv.com/2010/04/18/total-commander-to-change-the-configuration-file-address.html</link>
		<comments>http://blog.jjuv.com/2010/04/18/total-commander-to-change-the-configuration-file-address.html#comments</comments>
		<pubDate>Sun, 18 Apr 2010 11:26:56 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[挨踢]]></category>
		<category><![CDATA[TC]]></category>
		<category><![CDATA[Total commander]]></category>
		<category><![CDATA[Wincmd.ini]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=333</guid>
		<description><![CDATA[Total Commander大多数设置都保存在Wincmd.ini中，它放在Windows或者user目录下备份很不方便，与程序放在同一目录，重装电脑也不需要备份此文件。 方法一： 打开Wincmd.ini文件，在[Configuration]中增加... ]]></description>
			<content:encoded><![CDATA[<p>Total Commander大多数设置都保存在Wincmd.ini中，它放在Windows或者user目录下备份很不方便，与程序放在同一目录，重装电脑也不需要备份此文件。<br />
方法一：<br />
打开Wincmd.ini文件，在[Configuration]中增加如下语句：<br />
<code>UseIniInProgramDir=7<br />
InstallDir=%COMMANDER_PATH%</code></p>
<p>方法二：<br />
直接到<a href="http://xbeta.info/tc/tools.htm">官方主页中文版</a>中下载<a href="http://ghisler.fileburst.com/addons/inireloc.zip">Inireloc</a>工具即可，它支持支持32位版的Commander 4.53 及以后的版本。<br />
下载地址：<br />
<a href="http://ghisler.fileburst.com/addons/inireloc.zip">http://ghisler.fileburst.com/addons/inireloc.zip</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2010/04/18/total-commander-to-change-the-configuration-file-address.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>祝生日快乐</title>
		<link>http://blog.jjuv.com/2010/04/09/happy-birthday.html</link>
		<comments>http://blog.jjuv.com/2010/04/09/happy-birthday.html#comments</comments>
		<pubDate>Fri, 09 Apr 2010 02:17:54 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[撇嗒]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=332</guid>
		<description><![CDATA[遨游向燕赵， 天高爽气晶。 豁然逢光晶， 君门春意生。 春去有来日， 不言意不快。 赋诗思共乐， 失风鼓唅... ]]></description>
			<content:encoded><![CDATA[<p>遨游向燕赵，<br />
天高爽气晶。<br />
豁然逢光晶，<br />
君门春意生。<br />
春去有来日，<br />
不言意不快。<br />
赋诗思共乐，<br />
失风鼓唅呀</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2010/04/09/happy-birthday.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>令人崩溃的EXCEL查找替换范围问题</title>
		<link>http://blog.jjuv.com/2010/02/03/it-is-the-collapse-of-the-scope-of-excel-to-find-replacement.html</link>
		<comments>http://blog.jjuv.com/2010/02/03/it-is-the-collapse-of-the-scope-of-excel-to-find-replacement.html#comments</comments>
		<pubDate>Tue, 02 Feb 2010 16:18:05 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[挨踢]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[VBA]]></category>
		<category><![CDATA[替换]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=330</guid>
		<description><![CDATA[一个工作表sheet1中A,B列都有值1，用下面语句将A列中的1该为2 sheet1.Range(”A1:A6″).Replace What:=”1″, Replacement:=”2″, LookAt:=xlPart, _ SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _ ReplaceFormat:=False ... ]]></description>
			<content:encoded><![CDATA[<p>一个工作表sheet1中A,B列都有值1，用下面语句将A列中的1该为2<br />
sheet1.Range(”A1:A6″).Replace What:=”1″, Replacement:=”2″, LookAt:=xlPart, _<br />
SearchOrder:=xlByRows, MatchCase:=False, SearchFormat:=False, _<br />
ReplaceFormat:=False</p>
<p>问题是，如果excel“查找和替换”中的“替换范围”设定为“工作表”，可以正常替换，即只有A列中的1被改为2。</p>
<p>但是不小心将excel中crtl+h中“替换范围”设定为“整个工作簿”，那么A列和B列中的1都被改为2，而其他工作表中存在的1，也会被改为2。这意味着excel中查找和替换优先级高于宏的查找和替换。那么，如何在“替换范围”设定为“整个工作簿”的情况下，用replace命令只是替换指定范围内的值呢？或者如何先将替换范围改为“sheet”，然后再执行替换。</p>
<p>这个问题暂时无解，先记录下来。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2010/02/03/it-is-the-collapse-of-the-scope-of-excel-to-find-replacement.html/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>&#8220;牛逼&#8221;的卓越亚马逊</title>
		<link>http://blog.jjuv.com/2010/01/27/amazon-unfortunate.html</link>
		<comments>http://blog.jjuv.com/2010/01/27/amazon-unfortunate.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 02:46:14 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[撇嗒]]></category>
		<category><![CDATA[乌龙]]></category>
		<category><![CDATA[卓越亚马逊]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=329</guid>
		<description><![CDATA[1、2009年12月22日，卓越亚马逊网站上的一些价格高昂的书籍以25元的低价出售，这些书包括《二十四史》《资治通鉴》《全宋词》等，价格从800多到5000不等，网友们纷涌购买，随后卓越亚马逊... ]]></description>
			<content:encoded><![CDATA[<p>1、2009年12月22日，卓越亚马逊网站上的一些价格高昂的书籍以25元的低价出售，这些书包括《二十四史》《资治通鉴》《全宋词》等，价格从800多到5000不等，网友们纷涌购买，随后卓越亚马逊单方面取消订单。<br />
2、2010年1月23日，卓越亚马逊将原价为559元的移动硬盘标价为118元。在错误发生的2天后，卓越亚马逊取消了订单。</p>
<p>一个月之内，卓越亚马逊发生两次乌龙事件，采取了同样的方法，为了降低损失而取消订单。网上批评、谩骂、指责一片。</p>
<p>个人认为，卓越亚马逊敢这么做，至少说明它觉得网上的消费者拿他没办法。为何会这样呢？</p>
<p>首先，卓越亚马逊认为发货并不能代表危机公关成功，挽回以前损失的信誉，反而会亏损上百万，相比利润，信誉算个屁（在中国都一样）；同时卓越亚马逊认为消费者都是贪蝇头小利者。</p>
<p>假使卓越亚马逊发货，你也许会有“这个冤大头，赚到了”的想法抑或是“卓越，铁血真汉子”的想法。即使你占到了便宜，当你下次购买其他产品时，发现当当更便宜，你会不去当当购买吗？同样的，如果你抵制卓越亚马逊，当你看到卓越亚马逊的价格较其他网站低的话，你能有坚定的抵制的贞操吗？</p>
<p>我做不到，你呢？</p>
<p>PS:本文并非赞同卓越的做法，而是想说明，在利益面前，其他的都是一片浮云。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2010/01/27/amazon-unfortunate.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>1月12日：百度被黑，多数群众表示影响不大</title>
		<link>http://blog.jjuv.com/2010/01/12/january-12-baidu-is-black-most-of-the-people-expressed-little-effect-on.html</link>
		<comments>http://blog.jjuv.com/2010/01/12/january-12-baidu-is-black-most-of-the-people-expressed-little-effect-on.html#comments</comments>
		<pubDate>Tue, 12 Jan 2010 04:48:39 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[撇嗒]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=328</guid>
		<description><![CDATA[据官方声明系由于www.baidu.com 在美国域名注册商处的信息被非法篡改所致，但据推特上消息，百度被黑的真正原因是：伊朗圣战军的新任领袖阿卜杜.阿卜杜拉（abaidu.abaidula)看百度不爽，犯了名... ]]></description>
			<content:encoded><![CDATA[<p>据官方声明系由于www.baidu.com 在美国域名注册商处的信息被非法篡改所致，但据推特上消息，百度被黑的真正原因是：伊朗圣战军的新任领袖阿卜杜.阿卜杜拉（abaidu.abaidula)看百度不爽，犯了名讳，so攻击之。<br />
但目前尚不知阿卜杜.阿卜杜拉是否向拍《杜拉拉》老徐发出警告</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2010/01/12/january-12-baidu-is-black-most-of-the-people-expressed-little-effect-on.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>终极解决打开EXCEL 2007出现stdole32提示的办法</title>
		<link>http://blog.jjuv.com/2009/12/21/the-ultimate-solution-to-open-excel-2007-approaches-appears-stdole32-tips.html</link>
		<comments>http://blog.jjuv.com/2009/12/21/the-ultimate-solution-to-open-excel-2007-approaches-appears-stdole32-tips.html#comments</comments>
		<pubDate>Mon, 21 Dec 2009 02:46:14 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[挨踢]]></category>
		<category><![CDATA[office 2007]]></category>
		<category><![CDATA[stdole32.tlb]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=327</guid>
		<description><![CDATA[如前文（1），（2）所示，讲了N多避免出现stdole32.tlb提示的办法，但我在刚帮人装的版本里面依然出现了这样的提示，经过仔细的研究发现，安装OFFICE 2007一定要删除硬盘上已经存在的office文件... ]]></description>
			<content:encoded><![CDATA[<p>如前文（<a href="http://blog.jjuv.com/2008/11/05/how-to-solve-the-error-about-stdole32tlb-when-the-excel-start-up.html">1</a>），（<a href="http://blog.jjuv.com/2009/05/11/stdole32-tlb.html">2</a>）所示，讲了N多避免出现stdole32.tlb提示的办法，但我在刚帮人装的版本里面依然出现了这样的提示，经过仔细的研究发现，<strong>安装OFFICE 2007一定要删除硬盘上已经存在的office文件</strong>，然后遵循（<a href="http://blog.jjuv.com/2008/11/05/how-to-solve-the-error-about-stdole32tlb-when-the-excel-start-up.html">1</a>），（<a href="http://blog.jjuv.com/2009/05/11/stdole32-tlb.html">2</a>）的提示即可。</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2009/12/21/the-ultimate-solution-to-open-excel-2007-approaches-appears-stdole32-tips.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Are You kidding？</title>
		<link>http://blog.jjuv.com/2009/12/21/are-you-kidding.html</link>
		<comments>http://blog.jjuv.com/2009/12/21/are-you-kidding.html#comments</comments>
		<pubDate>Mon, 21 Dec 2009 02:35:39 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[撇嗒]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=322</guid>
		<description><![CDATA[A陀收到一条邮件，后面附一句“Sent from my Verizon Wireless BlackBerry”，不懂，问B陀啥意思 B陀答曰，“本消息从俺哒黑莓无线手机发送” A陀：“扯吧，你！！！肯定是句彦语之类的。... ]]></description>
			<content:encoded><![CDATA[<p>A陀收到一条邮件，后面附一句“Sent from my Verizon Wireless BlackBerry”，不懂，问B陀啥意思<br />
B陀答曰，“本消息从俺哒黑莓无线手机发送”<br />
A陀：“扯吧，你！！！肯定是句彦语之类的。”</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2009/12/21/are-you-kidding.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>简易安装windows7</title>
		<link>http://blog.jjuv.com/2009/12/10/easy-installation-windows7.html</link>
		<comments>http://blog.jjuv.com/2009/12/10/easy-installation-windows7.html#comments</comments>
		<pubDate>Thu, 10 Dec 2009 05:43:16 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[挨踢]]></category>
		<category><![CDATA[win7]]></category>
		<category><![CDATA[windows 7]]></category>
		<category><![CDATA[安装]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=325</guid>
		<description><![CDATA[以下是32位版本的方法，源自于网上，年纪大了，记性差了，仅做备忘所用。 另，64位与32位相同，但是下面第4步的Bootsect.exe的文件需要用32位的： 1、下载windows 7 ISO镜像(RC或RTM)，用winrar解压至... ]]></description>
			<content:encoded><![CDATA[<p>以下是32位版本的方法，源自于网上，年纪大了，记性差了，仅做备忘所用。<br />
另，64位与32位相同，但是下面第4步的Bootsect.exe的文件需要用32位的：<br />
1、下载windows 7 ISO镜像(RC或RTM)，用winrar解压至至非C盘(如D:\win7) </p>
<p>2、复制D:\win7文件夹中的Boot、EFI、sources文件夹以及其中的boot.wim文件和bootmgr至C盘根目录下<br />
第2步需取得管理员权限<br />
另，本步不需要将sources文件夹全部拷到D盘，只要其中一个boot.wim文件即可。</p>
<p>3、复制D:\win7\boot下Bootsect.exe至C盘根目录下 </p>
<p>4、管理员身份运行cmd，输入c:\bootsect.exe/nt60 c:并回车(最好复制，中间有空格) </p>
<p>5、重启系统自动进入安装界面，点左下角的修复计算机repair my computer) </p>
<p>6、选择最后一项命令提示符，进入DOS窗口，输入D:\win7\sources\setup.exe进入安装界面 </p>
<p>7、选择安装语言、格式化C盘，就OK了</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2009/12/10/easy-installation-windows7.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>提醒</title>
		<link>http://blog.jjuv.com/2009/12/07/reminder.html</link>
		<comments>http://blog.jjuv.com/2009/12/07/reminder.html#comments</comments>
		<pubDate>Mon, 07 Dec 2009 00:49:28 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[撇嗒]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=324</guid>
		<description><![CDATA[今天早晨出门几乎被一辆蒙迪欧给撞了，要知道 ，我400度的近视没带眼镜，居然可以看清楚是什么车，可见当时情形多么危急。 这件事提醒我有三： 1.要感谢上帝； 2.早上出门要早点，不要匆... ]]></description>
			<content:encoded><![CDATA[<p>今天早晨出门几乎被一辆蒙迪欧给撞了，要知道 ，我400度的近视没带眼镜，居然可以看清楚是什么车，可见当时情形多么危急。<br />
这件事提醒我有三：</p>
<blockquote><p>1.要感谢上帝；<br />
2.早上出门要早点，不要匆匆忙忙；<br />
3.一定要走斑马线，死也要有尊严。</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2009/12/07/reminder.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>胃口太好</title>
		<link>http://blog.jjuv.com/2009/10/13/hungry.html</link>
		<comments>http://blog.jjuv.com/2009/10/13/hungry.html#comments</comments>
		<pubDate>Tue, 13 Oct 2009 05:08:26 +0000</pubDate>
		<dc:creator>味小精</dc:creator>
				<category><![CDATA[撇嗒]]></category>

		<guid isPermaLink="false">http://blog.jjuv.com/?p=320</guid>
		<description><![CDATA[　　在飞机坠毁的地方，仅剩的那位幸存者倚靠在树旁，把刚刚啃光的骨头扔到旁边的骨头堆里，这时，他看到救援队到来了。 　　“老天爷啊，我得救了！”他欣慰地喊道。 　　但是救援队... ]]></description>
			<content:encoded><![CDATA[<p>　　在飞机坠毁的地方，仅剩的那位幸存者倚靠在树旁，把刚刚啃光的骨头扔到旁边的骨头堆里，这时，他看到救援队到来了。</p>
<p>　　“老天爷啊，我得救了！”他欣慰地喊道。</p>
<p>　　但是救援队并没有继续往前走，他们被那堆人骨头吓傻了——很明显，这个家伙把同伴们都吃了。那个幸存者羞愧地低下了头，说，“不要责备我，我也是为了活下去才吃了他们，这样做没什么不对的。”</p>
<p>　　救援队的队长稍稍向前迈了一步，摇摇头，一脸不可思议的神情，说，“人为了生存是不择手段的，我不怪你。可是老大，你们的飞机昨天才失事啊……”</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.jjuv.com/2009/10/13/hungry.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.232 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-09-03 03:52:17 -->
