<?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>再见.net&#124;BYE Dot Net</title>
	<atom:link href="http://blog.donews.com/zhenkai/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.donews.com/zhenkai</link>
	<description>坎坷与欢愉,求索与奋进</description>
	<lastBuildDate>Sun, 02 Dec 2007 03:06:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>CS1.5下载</title>
		<link>http://blog.donews.com/zhenkai/archive/2007/12/02/1233370.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2007/12/02/1233370.aspx#comments</comments>
		<pubDate>Sun, 02 Dec 2007 03:06:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[News & comments]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2007/12/02/1233370.aspx</guid>
		<description><![CDATA[<p>CS很久没玩过了，今天整理电脑发现了，大家分享一下吧。</p>
<p><a href="http://www.fs2you.com/zh-cn/files/719c440f-9bb5-11dc-ad39-0014221f3995/">http://www.fs2you.com/zh-cn/files/719c440f-9bb5-11dc-ad39-0014221f3995/</a></p>]]></description>
			<content:encoded><![CDATA[<p>CS很久没玩过了，今天整理电脑发现了，大家分享一下吧。</p>
<p><a href="http://www.fs2you.com/zh-cn/files/719c440f-9bb5-11dc-ad39-0014221f3995/">http://www.fs2you.com/zh-cn/files/719c440f-9bb5-11dc-ad39-0014221f3995/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2007/12/02/1233370.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ppt 解决幻灯片打印讲义从页码1开始的方法</title>
		<link>http://blog.donews.com/zhenkai/archive/2007/11/26/1231451.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2007/11/26/1231451.aspx#comments</comments>
		<pubDate>Mon, 26 Nov 2007 05:49:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Software Learning Notes]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2007/11/26/1231451.aspx</guid>
		<description><![CDATA[相信很多朋友在打印ppt时都遇到过，打印讲义只能从页码1开始，有时有好几个幻灯片打印，希望页码顺序能够相连；或者打印一套幻灯片的时候，中间卡纸了，在重新打印的时候，出来的页面还是页码1。<br />找遍了网上相关的解决方法，很多人都提出这个问题，但是真正解决的还没有。<br />下面就列出一个利用VBA宏的方法来搞定他吧<br />
<table class="list ol">
    <tbody>
        <tr>
            <td class="number">1.</td>
            <td class="text">在  工具  菜单上, 指向  宏 , 然后单击 &#34;  VisualBasic 编辑器 。</td>
        </tr>
        <tr>
            <td class="number">2.</td>
            <td class="text">在  插入  菜单上, 单击  模块 。</td>
        </tr>
        <tr>]]></description>
			<content:encoded><![CDATA[<p>相信很多朋友在打印ppt时都遇到过，打印讲义只能从页码1开始，有时有好几个幻灯片打印，希望页码顺序能够相连；或者打印一套幻灯片的时候，中间卡纸了，在重新打印的时候，出来的页面还是页码1。<br />找遍了网上相关的解决方法，很多人都提出这个问题，但是真正解决的还没有。<br />下面就列出一个利用VBA宏的方法来搞定他吧</p>
<table class="list ol">
<tbody>
<tr>
<td class="number">1.</td>
<td class="text">在  工具  菜单上, 指向  宏 , 然后单击 &quot;  VisualBasic 编辑器 。</td>
</tr>
<tr>
<td class="number">2.</td>
<td class="text">在  插入  菜单上, 单击  模块 。</td>
</tr>
<tr>
<td class="number">3.</td>
<td class="text">模块中键入如下代码：</td>
</tr>
</tbody>
</table>
<pre class="code">Sub HandoutNumber()   Dim i As Long   Dim lStart As Long   Dim lStop As Long   Dim lHandoutKind As Long   Dim lSlide As Long   Dim lSlideEnd As Long   Dim ppHandoutKind As PpPrintOutputType   Dim vbConfirm As VbMsgBoxResult   '   ' Ask the user which slide to start printing handouts from.   '   lSlide = InputBox(&quot;Start handouts at what slide number?&quot;, _         &quot;Starting Slide&quot;, &quot;1&quot;)   '   ' Ask the user which page number to start at.   '   lStart = InputBox(&quot;Start the page number for handouts at: &quot;, _         &quot;Restart Handout Page Numbers&quot;, &quot;1&quot;)   '   ' Ask the user how many slides per page they want to print.   '   lHandoutKind = InputBox(&quot;How many slides per handout page?&quot; &amp; _         vbNewLine &amp; &quot;2, 3, 4, 6, 9?&quot;, &quot;Handout Type&quot;, &quot;4&quot;)   '   ' Use a case statement to set the handout type and the number of   ' slides per page. If the user types in a number other than 2,3,   ' 4,6, or 9, round up to the nearest handout layout size. If the   ' number is greater than 9, make it the 9-up layout and set   ' the slides per page to 9.   '   Select Case lHandoutKind      Case 1, 2         ppHandoutKind = ppPrintOutputTwoSlideHandouts         lHandoutKind = 2      Case 3         ppHandoutKind = ppPrintOutputThreeSlideHandouts         lHandoutKind = 3      Case 4         ppHandoutKind = ppPrintOutputFourSlideHandouts         lHandoutKind = 4      Case 5, 6         ppHandoutKind = ppPrintOutputSixSlideHandouts         lHandoutKind = 6      Case Else         ppHandoutKind = ppPrintOutputNineSlideHandouts         lHandoutKind = 9   End Select   '   ' Confirm the settings.   '   vbConfirm = MsgBox(&quot;You have chosen to print &quot; &amp; lHandoutKind &amp; _         &quot;-up handouts, starting at page &quot; &amp; lStart &amp; vbNewLine &amp; _         &quot; and slide number &quot; &amp; lSlide &amp; &quot;.&quot;, vbOKCancel)   '   ' If the result is OK, print the range.   '   If vbConfirm = vbOK Then   '   ' Calculate the number of pages that have to be printed. Then, test to   ' make sure that number of pages are correct. The Round function rounds   ' to the nearest whole number, therefore if you have 10 slides to print on a   ' 9-up handout, lStop first is set to 1, because 10/9 = 1.1111 rounded   ' to 1.   ' The MOD operator returns a remainder if there are not enough slides   ' to fill a page. If the remainder is less than or equal to one half of   ' the layout size.   '      lStop = Round((ActivePresentation.Slides.Count - (lSlide - 1)) _            / lHandoutKind)      If Round((ActivePresentation.Slides.Count - (lSlide - 1)) Mod _            lHandoutKind) &lt;= (lHandoutKind / 2) Then         lStop = lStop + 1      End If   '   ' From 1 to the number of pages, loop until all the pages are printed.   '      For i = 1 To lStop   '   ' On the notes master, set the automatic page numbers to False; then   ' insert the starting page number that the user wants. Increment the   ' page number by one.   ' This code assumes that object 4 on the handouts master is the page   ' number footer on the handouts master page.   '         ActivePresentation.NotesMaster.HeadersFooters.SlideNumber _               .Visible = msoFalse         ActivePresentation.HandoutMaster.Shapes(4).TextFrame _               .TextRange.Text = lStart         lStart = lStart + 1   '   ' Set the printer options and print the handouts.   '         With ActivePresentation.PrintOptions   '   ' Set the print range type to a slide range.   '            .RangeType = ppPrintSlideRange            With .Ranges   '   ' Clear any previous ranges that were set.   '               .ClearAll   '   ' Set the slide range to print based on the number of slides per page.   '               lSlideEnd = lSlide + lHandoutKind - 1   '   ' If the starting slide is greater than the number of slides in the   ' presentation, set the value equal to that number.   ' Perform the same test for lSlideEnd, to make sure the slide range   ' does not exceed the number of slides in the presentation.   '               If lSlide &gt; ActivePresentation.Slides.Count Then                  lSlide = ActivePresentation.Slides.Count               End If               If lSlideEnd &gt; ActivePresentation.Slides.Count Then                  lSlideEnd = ActivePresentation.Slides.Count               End If               .Add Start:=lSlide, End:=lSlideEnd               lSlide = lSlide + lHandoutKind            End With   '   ' Set number of copies to 1.   '            .NumberOfCopies = 1   '   ' Set the page output to the handout layout the user has chosen.   '            .OutputType = ppHandoutKind   '   ' Set the slide positioning to columns. You can also use   ' ppPrintHandoutHorizontalFirst to set the slides in rows.   '            .HandoutOrder = ppPrintHandoutVerticalFirst         End With   '   ' Print the single page by using the chosen settings.   '         ActivePresentation.PrintOut      Next i   End If   '   ' Reset the handout master page to use automatic page numbers,   ' and clear any text from the frame.   '   ActivePresentation.HandoutMaster.Shapes(4).TextFrame _         .TextRange.Text = &quot;&quot;   ActivePresentation.NotesMaster.HeadersFooters.SlideNumber _         .Visible = msoTrueEnd Sub</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2007/11/26/1231451.aspx/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>video</title>
		<link>http://blog.donews.com/zhenkai/archive/2006/10/12/1058892.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2006/10/12/1058892.aspx#comments</comments>
		<pubDate>Thu, 12 Oct 2006 07:27:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Jokes]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2006/10/12/1058892.aspx</guid>
		<description><![CDATA[<embed src="http://www.uume.com/v/7A5zemYjaNry_UUME" width="400" height="342" type="application/x-shockwave-flash"></embed>]]></description>
			<content:encoded><![CDATA[<p><embed src="http://www.uume.com/v/7A5zemYjaNry_UUME" width="400" height="342" type="application/x-shockwave-flash"></embed></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2006/10/12/1058892.aspx/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gmail邀请若干</title>
		<link>http://blog.donews.com/zhenkai/archive/2006/09/11/1035121.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2006/09/11/1035121.aspx#comments</comments>
		<pubDate>Mon, 11 Sep 2006 11:20:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Gmail Invitation]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2006/09/11/1035121.aspx</guid>
		<description><![CDATA[<p><img alt="" src="https://mail.google.com/mail/help/images/logo.gif" /></p>
<p>我也不知道，现在过没过时，好像身边的人都有Gmail了</p>
<p>呵呵</p>
<p>谁还没有的跟我说阿</p>
<a href="https://mail.google.com/mail/help/images/logo.gif"></a>]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="https://mail.google.com/mail/help/images/logo.gif" /></p>
<p>我也不知道，现在过没过时，好像身边的人都有Gmail了</p>
<p>呵呵</p>
<p>谁还没有的跟我说阿</p>
<p><a href="https://mail.google.com/mail/help/images/logo.gif"></a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2006/09/11/1035121.aspx/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>又气着我了</title>
		<link>http://blog.donews.com/zhenkai/archive/2006/09/11/1035003.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2006/09/11/1035003.aspx#comments</comments>
		<pubDate>Mon, 11 Sep 2006 09:06:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Ideas & Diraies]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2006/09/11/1035003.aspx</guid>
		<description><![CDATA[<p>今天陪着我们主任去了趟车管所，以前没去过。到了那之后，不愧是车管所阿，院子里面就立着马路上才能看见的指示牌，让人感觉很搞笑！</p>
<p>刚刚到一个办事窗口，只见三五成群的人围了上来，原来他们是帮助你办理手续的。我想这的服务还真不错，在细一打听，原来他们是要收取一定劳务费的。</p>
<p>为什么会出现这些人呢？为什么我们自己不能办，而需要这些人呢？为什么他们会有市场呢？</p>
<p>一大堆的问题，看来还是我们的办事效率有问题啊。试想要是能够很容易办下来，就不会有他们的生存空间啊。</p>
<p>我们拒绝了每一个上来搭讪的&#8220;办事员&#8221;，打算用自己的能力办下来。排了很长时间的队，终于有官方人士接待我们了，不料只给了我们两张表格。在普通不过的表格了，甩了一句，回去填好，盖好章，拿回来。</p>
<p>晕。就为了这两张表，我们千里迢迢来这排队领？</p>
<p>现在网络如此发达，为什么不在车管所的网上提供让大家下载？</p>
<p>为什么我们的政府办事效率如此~~~</p>
<p>不说了，越说越气</p>]]></description>
			<content:encoded><![CDATA[<p>今天陪着我们主任去了趟车管所，以前没去过。到了那之后，不愧是车管所阿，院子里面就立着马路上才能看见的指示牌，让人感觉很搞笑！</p>
<p>刚刚到一个办事窗口，只见三五成群的人围了上来，原来他们是帮助你办理手续的。我想这的服务还真不错，在细一打听，原来他们是要收取一定劳务费的。</p>
<p>为什么会出现这些人呢？为什么我们自己不能办，而需要这些人呢？为什么他们会有市场呢？</p>
<p>一大堆的问题，看来还是我们的办事效率有问题啊。试想要是能够很容易办下来，就不会有他们的生存空间啊。</p>
<p>我们拒绝了每一个上来搭讪的&ldquo;办事员&rdquo;，打算用自己的能力办下来。排了很长时间的队，终于有官方人士接待我们了，不料只给了我们两张表格。在普通不过的表格了，甩了一句，回去填好，盖好章，拿回来。</p>
<p>晕。就为了这两张表，我们千里迢迢来这排队领？</p>
<p>现在网络如此发达，为什么不在车管所的网上提供让大家下载？</p>
<p>为什么我们的政府办事效率如此~~~</p>
<p>不说了，越说越气</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2006/09/11/1035003.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[2006.9.10]EBSCO直接入口*1</title>
		<link>http://blog.donews.com/zhenkai/archive/2006/09/10/1034005.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2006/09/10/1034005.aspx#comments</comments>
		<pubDate>Sun, 10 Sep 2006 06:07:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Academic Resources]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2006/09/10/1034005.aspx</guid>
		<description><![CDATA[<p>NEW YORK CHIROPRACTIC COLLEGE <br />直接入口：<br /><a href="http://search.epnet.com/Community.aspx?lp=login.asp&#38;ref=&#38;authtype=ip&#38;ug=7E36399631063D063E02352338&#38;return=y">由于链接字符很长，为了不影响界面，请点击此处，或右键复制快捷方式</a></p>
<table border="0">
    <tbody>
        <tr>
            <td style="WIDTH: 100px" valign="top" align="center"><img alt="EBSCOhost graphic" border="0" src="http://search.ebscohost.com/images/ehost_logo.gif" /></td>
            <td>EBSCOhost Web<br /></td>
        </tr>
]]></description>
			<content:encoded><![CDATA[<p>NEW YORK CHIROPRACTIC COLLEGE <br />直接入口：<br /><a href="http://search.epnet.com/Community.aspx?lp=login.asp&amp;ref=&amp;authtype=ip&amp;ug=7E36399631063D063E02352338&amp;return=y">由于链接字符很长，为了不影响界面，请点击此处，或右键复制快捷方式</a></p>
<table border="0">
<tbody>
<tr>
<td style="WIDTH: 100px" valign="top" align="center"><img alt="EBSCOhost graphic" border="0" src="http://search.ebscohost.com/images/ehost_logo.gif" /></td>
<td>EBSCOhost Web</td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td style="WIDTH: 100px" valign="top" align="center"><img alt="EBSCOhost Text Only graphic" border="0" src="http://search.ebscohost.com/images/ehostnojs_logo.gif" /></td>
<td>EBSCOhost Text Only</td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td style="WIDTH: 100px" valign="top" align="center"><img alt="EBSCOhost graphic" border="0" src="http://search.ebscohost.com/images/ehost_logo.gif" /></td>
<td>Main Databases</td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td style="WIDTH: 100px" valign="top" align="center"><img alt="" border="0" src="http://search.ebscohost.com/images/dynamed_logo.gif" /></td>
<td>DynaMed</td>
</tr>
</tbody>
</table>
<table border="0">
<tbody>
<tr>
<td style="WIDTH: 100px" valign="top" align="center"><img alt="Searchasaurus graphic" border="0" src="http://search.ebscohost.com/images/sas_logo.gif" /></td>
<td>Searchasaurus</td>
</tr>
</tbody>
</table>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2006/09/10/1034005.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[ZT]2秒内看出问题的是色狼</title>
		<link>http://blog.donews.com/zhenkai/archive/2006/09/10/1033958.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2006/09/10/1033958.aspx#comments</comments>
		<pubDate>Sun, 10 Sep 2006 04:20:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Posted Good essay]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2006/09/10/1033958.aspx</guid>
		<description><![CDATA[<img alt="" src="http://cimg2.163.com/education/campus/200609/7/34.jpg" />]]></description>
			<content:encoded><![CDATA[<p><img alt="" src="http://cimg2.163.com/education/campus/200609/7/34.jpg" /></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2006/09/10/1033958.aspx/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>感恩——又到教师节</title>
		<link>http://blog.donews.com/zhenkai/archive/2006/09/10/1033953.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2006/09/10/1033953.aspx#comments</comments>
		<pubDate>Sun, 10 Sep 2006 03:55:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Ideas & Diraies]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2006/09/10/1033953.aspx</guid>
		<description><![CDATA[<p>9月10日，一年一度的教师节到了</p>
<p>思来想去，都已经工作的我，细细数来在我学习的17年中，遇到了不少影响我一生的好老师</p>
<p>人这一辈子，遇到一位负责任的老师就很不容易了。老师这个职业有其特殊性，她跟园丁还是有一定区别的，她所教育的是活生生的人，人是复杂的、高级的。</p>
<p>我的小学、高中、大学都遇到了伯乐，他们都在不同方面给过我很大的帮助。相比而言，我是幸运的。</p>
<p>我感谢他们，小学老师对于我的成长，对于的的性格，对于的发展给了不可磨灭的影响。</p>
<p>高中老师则给了我更多接触科研的机会，是我成长的启蒙。</p>
<p>大学是我收获的阶段，遇到了各个方面的优秀教师。我感谢她们，为我提供了发展的机会。</p>
<p>谢谢，由衷地感谢。</p>
<p>&#160;</p>]]></description>
			<content:encoded><![CDATA[<p>9月10日，一年一度的教师节到了</p>
<p>思来想去，都已经工作的我，细细数来在我学习的17年中，遇到了不少影响我一生的好老师</p>
<p>人这一辈子，遇到一位负责任的老师就很不容易了。老师这个职业有其特殊性，她跟园丁还是有一定区别的，她所教育的是活生生的人，人是复杂的、高级的。</p>
<p>我的小学、高中、大学都遇到了伯乐，他们都在不同方面给过我很大的帮助。相比而言，我是幸运的。</p>
<p>我感谢他们，小学老师对于我的成长，对于的的性格，对于的发展给了不可磨灭的影响。</p>
<p>高中老师则给了我更多接触科研的机会，是我成长的启蒙。</p>
<p>大学是我收获的阶段，遇到了各个方面的优秀教师。我感谢她们，为我提供了发展的机会。</p>
<p>谢谢，由衷地感谢。</p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2006/09/10/1033953.aspx/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>PPT2DOC 幻灯片文字提取程序</title>
		<link>http://blog.donews.com/zhenkai/archive/2006/09/09/1033772.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2006/09/09/1033772.aspx#comments</comments>
		<pubDate>Sat, 09 Sep 2006 15:21:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Software Learning Notes]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2006/09/09/1033772.aspx</guid>
		<description><![CDATA[<h3>&#160;PPT2DOC 幻灯片文字提取程序</h3>
<p><img alt="" src="http://photo7.yupoo.com/20060909/230453_1764454369.jpg" /></p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; 最近在网上发现这么一个小工具，可以把PPT中的文字、也包括部分表格、图片统统提取到一个Word文档中，但是还是需要人工修改一下下。速度蛮快！</p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; 大家搜索一下吧！Google上可以找到。我就不发了&#160;</p>]]></description>
			<content:encoded><![CDATA[<h3>&nbsp;PPT2DOC 幻灯片文字提取程序</h3>
<p><img alt="" src="http://photo7.yupoo.com/20060909/230453_1764454369.jpg" /></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 最近在网上发现这么一个小工具，可以把PPT中的文字、也包括部分表格、图片统统提取到一个Word文档中，但是还是需要人工修改一下下。速度蛮快！</p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 大家搜索一下吧！Google上可以找到。我就不发了&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2006/09/09/1033772.aspx/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>[2006.9.9]Ezproxy*1 Marshall University Libraries</title>
		<link>http://blog.donews.com/zhenkai/archive/2006/09/09/1033497.aspx</link>
		<comments>http://blog.donews.com/zhenkai/archive/2006/09/09/1033497.aspx#comments</comments>
		<pubDate>Sat, 09 Sep 2006 08:02:00 +0000</pubDate>
		<dc:creator>风中客</dc:creator>
				<category><![CDATA[Academic Resources]]></category>

		<guid isPermaLink="false">http://blog.donews.com/zhenkai/archive/2006/09/09/1033497.aspx</guid>
		<description><![CDATA[ 
    
        
            
        
    

Remote Access to MU Libraries Resources
http://ezproxy.marshall.edu:2048/login
]]></description>
			<content:encoded><![CDATA[<table cellspacing="1" cellpadding="1" width="200" summary="" border="0">
<tbody>
<tr>
<td bgcolor="#008000"><a target="_blank" href="http://ezproxy.marshall.edu:2048/login"><img alt="" align="left" border="0" src="http://www.marshall.edu/www/images/temp_mulogo.gif" /></a></td>
</tr>
</tbody>
</table>
<h5>Remote Access to MU Libraries Resources</h5>
<p><a href="http://ezproxy.marshall.edu:2048/login">http://ezproxy.marshall.edu:2048/login</a></p>
<p>MUID: <strong>901079848</strong> Birth Date: <strong>0725</strong></p>
<p align="center"><strong>Database Menu</strong> </p>
<p>MetaFind<br />Abc-clio: America: History &amp; Life<br />CSA &#8211; Biological Sciences<br />EBSCOhost<br />EBSCOhost<br />PsycCRITIQUES<br />Bigchalk<br />CSA &#8211; Internet database Service<br />CSA Illumina<br />Catchword<br />African American Biographical Database<br />Emerald<br />International Index to Music Periodicals<br />ChoiceReviews.online<br />Com Abstracts<br />Com Index<br />Dissertation Abstracts(FirstSearch)<br />EBSCOHost Databases<br />Library, Information Science &amp; Technology Abstracts<br />ATLA Religion Database with ATLASerials<br />EBSCO Electronic Journals (EbscoOnline)<br />Ebsco LinkSource<br />ebrary<br />ERIC (EbscoHost)<br />FirstSearch<br />Grove Dictionary of Music and Musicians<br />Human Relations Area Files (HRAF)<br />Journals on EBSCO Online: Full Text MU journal subscriptions online<br />JSTOR<br />MIT Press<br />SpringerLink(Kluwer)<br />MARCIVE WEB DOCS for US Government Publications<br />EbscoHost ?PsycArticles<br />WebSpirs &#8211; Criminal Justice Abstracts<br />WebSpirs &#8211; Mental Measurements Yearbook<br />ProQuest ?CINAHL<br />ProQuest Direct<br />OmniFile Select &#8216;94-present?/a&gt;<br />Physical Education Index<br />Project MUSE<br />EBSCOHost &#8211; Psychological and Behavioral Science Collection<br />EBSCOHost &#8211; PsycINFO<br />EbscoHost Academic Search Premier<br />EbscoHost Business Source Premier<br />Science Direct Web<br />Synergy<br />USGOVSearch<br />Wiley InterScience<br />WilsonWeb &#8211; Biographies Plus Fulltext /Index to Legal Periodicals /Essay &amp; Literature Index<br />Journal of High Energy Physics<br />Journal of the American Medical Informatics Association<br />Journal of Pediatric Health Care<br />American Journal of Physics<br />Research-Technology Management<br />Journal of Turbulence<br />Mathematics of Computation<br />Archives of General Psychiatry<br />Clinical Chemistry<br />Annals of Internal Medicine<br />BLACK CONGRESSIONAL MONITOR<br />LANGUAGE ARTS<br />Duke Mathematical journal<br />Science &amp; Society<br />Microbiology<br />American Journal of Clinical Nutrition (EBSCOHostEJS)<br />SAA BULLETIN and SAA ARCHAEOLOGICAL RECORD<br />Publisher<br />Westlaw Campus<br />COS funding opportunities<br />Electronic resource<br />Community of Science MEDLINE<br />Community of Science Funded Research.<br />Community of science the U.S. patent citation database.<br />GeoRef<br />AGRICOLA (Online : COS)<br />Dissertation Abstracts (ProQuest)<br />RILM database in EbscoHost<br />Government Periodicals Universe<br />Lexis Nexis Academic<br />Congressional Universe<br />Statistical Universe<br />MathSciNet<br />WV-BRIN: Current Protocols reference series<br />Mergent Online<br />Publisher &#8211; Sage<br />Publisher &#8211; Oxford UP<br />Publisher &#8211; Haworth Press<br />Ebsco &#8211; Metapress<br />Haworth Publishers<br />Sage Publishers<br />IEEE title<br />Nature Publishing Group<br />Current Anthropology<br />Journal Citation Reports &#8211; JCR Web Science Edition<br />PubMed<br />Journal of Park and Recreation Administration<br />International Journal of Pattern Recognition &amp; Artificial Intelligence<br />HUNTINGTON LIBRARY QUARTERLY &amp; Journal of the American Musicological Society<br />Oil &amp; Gas Journa<br />Clinical Kinesiology<br />EZ-Borrow (PALCI)<br />Cabell County Public Library<br />MILES<br />Degruyter Titles<br />NCJRS<br />Duke Titles<br />Publishers<br />Current Digest of the Post Soviet Press<br />www.ingentaconnect.com<br />Artstor</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.donews.com/zhenkai/archive/2006/09/09/1033497.aspx/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

