<?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>anupsaund &#187; Access 2007</title>
	<atom:link href="http://www.anupsaund.com/category/access-2007/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.anupsaund.com</link>
	<description>... thoughts from a Web Developer.</description>
	<lastBuildDate>Tue, 11 May 2010 13:36:23 +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>Stop the Microsoft Office 2007 Logo / toolbar / ribbon from blinking / flashing</title>
		<link>http://www.anupsaund.com/2009/05/12/stop-the-microsoft-office-2007-logo-toolbar-ribbon-from-blinking-flashing/</link>
		<comments>http://www.anupsaund.com/2009/05/12/stop-the-microsoft-office-2007-logo-toolbar-ribbon-from-blinking-flashing/#comments</comments>
		<pubDate>Tue, 12 May 2009 12:24:26 +0000</pubDate>
		<dc:creator>Anup Saund</dc:creator>
				<category><![CDATA[Access 2007]]></category>
		<category><![CDATA[Office 2007]]></category>
		<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://www.anupsaund.com/stop-the-microsoft-office-2007-logo-toolbar-ribbon-from-blinking-flashing</guid>
		<description><![CDATA[The Issue Microsoft Office 2007 has a wonderful new interface with ribbons, which other developers are adopting as a windows standard. However, when office is installed and used for the first time, the Microsoft Logo (shown below) flashes until the user clicks it.

So what&#8217;s the problem? 
I have been using the Microsoft Access 2007 object [...]]]></description>
			<content:encoded><![CDATA[<p><strong>The Issue </strong>Microsoft Office 2007 has a wonderful new interface with ribbons, which other developers are adopting as a windows standard. However, when office is installed and used for the first time, the Microsoft Logo (shown below) flashes until the user clicks it.</p>
<p><img title="Microsoft Flashing Logo" alt="Microsoft Flashing Logo" src="http://www.anupsaund.com/flashing_logo.gif" /></p>
<p><strong>So what&#8217;s the problem? </strong></p>
<p>I have been using the Microsoft Access 2007 object in Visual Basic at work, and attempting to open an instance of Access as hidden. The issue comes up when we distributing the application that we have created.</p>
<p>When the user installs Access 2007 &#8211; Run Time Edition, and then runs our application, the Access Window pops up, with the flashing logo.</p>
<p><strong>How do I stop it from flashing?</strong></p>
<p>This is the million dollar question that I&#8217;ve been trying so hard to find the answer to.</p>
<p>- Brielfly, I ran a registry comparison tool (<a title="RegFormApp" href="http://nirsoft.net/utils/reg_file_from_application.html">RegFormApp</a>) to see what happens when the user clicks on the microsoft logo in an office program.</p>
<p>The program showed that the following registry key was being updated.</p>
<pre class="brush: bash"> [HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Common\General]
&quot;OfficeMenuDiscovered&quot;=dword:00000001</pre>
<p>Okay, for those of you who use windows registry edit, follow the following steps;</p>
<p><img title="How to change the setting" alt="How to change the setting" src="http://www.anupsaund.com/what_to_do.gif" /></p>
<p>1) Navigate through the tree menu on the left, until you get to the right place.</p>
<p>2) Double click on &#8220;OfficeMenuDiscovered&#8221;.</p>
<p>3) Change the setting from 0 to 1. Click OK to save the changes.</p>
<p style="font-weight: bold">The .REG File Method<br />
Stick the following into notepad, and then save the file as a .reg extention.</p>
<pre class="brush: bash">[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Common\General]
&quot;OfficeMenuDiscovered&quot;=dword:00000001</pre>
<p>This will make it into a Registry update file that you can use in installers, etc, to get the setting set!
</p>
<p style="font-weight: bold"><span style="font-weight: normal">All I can say is that it&#8217;s been a journey.</span></p>
<p style="font-weight: bold"><span style="font-weight: normal">I hope this post saves you a lot of time and effort in your developments. </span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.anupsaund.com/2009/05/12/stop-the-microsoft-office-2007-logo-toolbar-ribbon-from-blinking-flashing/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Disable Microsoft Access 2007 Security Warnings (Macro, Office 2007)</title>
		<link>http://www.anupsaund.com/2007/12/14/microsoft-access-2007-security-warnings-macro-office-2007/</link>
		<comments>http://www.anupsaund.com/2007/12/14/microsoft-access-2007-security-warnings-macro-office-2007/#comments</comments>
		<pubDate>Fri, 14 Dec 2007 14:49:02 +0000</pubDate>
		<dc:creator>Anup Saund</dc:creator>
				<category><![CDATA[Access 2007]]></category>
		<category><![CDATA[Microsoft Office]]></category>
		<category><![CDATA[Office 2007]]></category>

		<guid isPermaLink="false">http://www.anupsaund.com/microsoft-access-2007-security-warnings-macro-office-2007</guid>
		<description><![CDATA[Disabling Security Warning Box
The easiest way to do this is to add a registry key to turn VBA Warnings Off:
1. Open Notepad
2. Paste in:
Windows Registry Editor Version 5.00

[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Access\Security]
&#34;VBAWarnings&#34;=dword:00000001

3. Save as filename.reg
4. Run filename.reg, and say YES when it asks if you want to add the registry key.
As you may have guessed, you can add the [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Disabling Security Warning Box</strong><br />
The easiest way to do this is to add a registry key to turn VBA Warnings Off:</p>
<p>1. Open Notepad</p>
<p>2. Paste in:</p>
<p>Windows Registry Editor Version 5.00</p>
<pre class="brush: bash">
[HKEY_CURRENT_USER\Software\Microsoft\Office\12.0\Access\Security]
&quot;VBAWarnings&quot;=dword:00000001
</pre>
<p>3. Save as filename.reg</p>
<p>4. Run filename.reg, and say YES when it asks if you want to add the registry key.</p>
<p>As you may have guessed, you can add the same DWORD to the other directories like WORD, EXCEL etc.</p>
<p>Version 12 is for Office 2007, but this also works with 11.0, 10.0 versions of OFFICE.</p>
<p>Enjoy Hacking!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.anupsaund.com/2007/12/14/microsoft-access-2007-security-warnings-macro-office-2007/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
