<?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>Macro | KC's Blog</title>
	<atom:link href="https://www.kjctech.net/tag/macro/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.kjctech.net</link>
	<description></description>
	<lastBuildDate>Tue, 24 Jan 2023 18:21:06 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/www.kjctech.net/wp-content/uploads/2016/12/cropped-KC-Logo.png?fit=32%2C32&#038;ssl=1</url>
	<title>Macro | KC's Blog</title>
	<link>https://www.kjctech.net</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">24634607</site>	<item>
		<title>Macro to force hidden text shown in Word</title>
		<link>https://www.kjctech.net/macro-to-force-hidden-text-shown-in-word/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=macro-to-force-hidden-text-shown-in-word</link>
					<comments>https://www.kjctech.net/macro-to-force-hidden-text-shown-in-word/#respond</comments>
		
		<dc:creator><![CDATA[Kent Chen]]></dc:creator>
		<pubDate>Wed, 14 Mar 2012 20:16:11 +0000</pubDate>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[Macro]]></category>
		<category><![CDATA[Word]]></category>
		<guid isPermaLink="false">http://www.kjctech.net/?p=1684</guid>

					<description><![CDATA[<p>In order to show the hidden text in your Word document you need to turn on that Show Marks &#38; Symbols button. But for those who don&#8217;t like this button turned on at all time, you need to use a few tricks in Word to force the hidden text shown without having to press that button. The basic code in [&#8230;]</p>
The post <a href="https://www.kjctech.net/macro-to-force-hidden-text-shown-in-word/">Macro to force hidden text shown in Word</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></description>
										<content:encoded><![CDATA[<p>In order to show the hidden text in your Word document you need to turn on that Show Marks &amp; Symbols button. But for those who don&#8217;t like this button turned on at all time, you need to use a few tricks in Word to force the hidden text shown without having to press that button.</p>
<p>The basic code in VBA that makes hidden text display is something like this:</p>
<blockquote>
<p><font color="#555555">ActiveWindow.View.ShowHiddenText = True</font></p>
</blockquote>
<p>If you want the hidden text shown in a template, add the following codes in <strong><em>ThisDocument.</em></strong></p>
<blockquote>
<p><font color="#555555">Private Sub Document_New()       <br />&#160;&#160;&#160; ActiveWindow.View.ShowHiddenText = True        <br />End Sub</font></p>
</blockquote>
<p>If you want the hidden text shown automatically in a particular document, change the subroutine name to <strong><em>Document_Open()</em></strong>.</p>
<p>If you want the hidden text show automatically on any of new document, put the same code above into <strong><em>Normal.dot</em></strong> template on your local computer.</p>
<p>Check out <a href="http://support.microsoft.com/kb/198547">here</a> and <a href="http://www.techrepublic.com/blog/msoffice/how-to-automatically-execute-a-word-macro-when-you-create-open-or-close-a-document/4770">here</a> for more details but you don&#8217;t really have to. <img src="https://s.w.org/images/core/emoji/15.0.3/72x72/1f642.png" alt="🙂" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>The post <a href="https://www.kjctech.net/macro-to-force-hidden-text-shown-in-word/">Macro to force hidden text shown in Word</a> first appeared on <a href="https://www.kjctech.net">KC's Blog</a>.]]></content:encoded>
					
					<wfw:commentRss>https://www.kjctech.net/macro-to-force-hidden-text-shown-in-word/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">1684</post-id>	</item>
	</channel>
</rss>
