<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Installing an Excel Add-In</title>
	<atom:link href="http://peltiertech.com/WordPress/installing-an-excel-add-in/feed/" rel="self" type="application/rss+xml" />
	<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/</link>
	<description>PTS Excel Charts and Tutorials Blog</description>
	<lastBuildDate>Sat, 21 Nov 2009 04:01:08 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Igor</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-22481</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Fri, 20 Nov 2009 17:40:39 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-22481</guid>
		<description>Thank You Jon,
Looks like it is solution I was looking for</description>
		<content:encoded><![CDATA[<p>Thank You Jon,<br />
Looks like it is solution I was looking for</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-22448</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Fri, 20 Nov 2009 03:00:46 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-22448</guid>
		<description>You need to insert a class module into the add-in, and declare an Excel Application variable with events. In the class module you can then add events like workbook_beforesave. Before using the class you have to instantiate the application variable.

This topic is covered in the &quot;Application Events In An New Class Module&quot; section of Chip Pearson&#039;s &lt;a href=&quot;http://www.cpearson.com/Excel/AppEvent.aspx&quot; title=&quot;Application Events &#124;Pearson Software Consulting&quot; rel=&quot;nofollow&quot;&gt;Application Events&lt;/a&gt; page.</description>
		<content:encoded><![CDATA[<p>You need to insert a class module into the add-in, and declare an Excel Application variable with events. In the class module you can then add events like workbook_beforesave. Before using the class you have to instantiate the application variable.</p>
<p>This topic is covered in the &#8220;Application Events In An New Class Module&#8221; section of Chip Pearson&#8217;s <a href="http://www.cpearson.com/Excel/AppEvent.aspx" title="Application Events |Pearson Software Consulting" rel="nofollow">Application Events</a> page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Igor</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-22444</link>
		<dc:creator>Igor</dc:creator>
		<pubDate>Fri, 20 Nov 2009 01:13:16 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-22444</guid>
		<description>Hi,
How can I intercept from Add-In build in event- like FileSave, so I can trigger some custom handling for that event every time for any excel workbook opened

Thanks,</description>
		<content:encoded><![CDATA[<p>Hi,<br />
How can I intercept from Add-In build in event- like FileSave, so I can trigger some custom handling for that event every time for any excel workbook opened</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-13678</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Tue, 05 May 2009 20:56:28 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-13678</guid>
		<description>Hi Rich -

There are two steps. First, the procedures are declared as Public Subs or Functions. Second, in the VB project that accesses these procedures, I have set a reference to the add-in containing the procedures: VB Editor&#039;s Tools menu &gt; References. This is where having a unique project name is helpful, so you can recognize your add-in in the list. Otherwise you will see a handful of items names VBProject.</description>
		<content:encoded><![CDATA[<p>Hi Rich -</p>
<p>There are two steps. First, the procedures are declared as Public Subs or Functions. Second, in the VB project that accesses these procedures, I have set a reference to the add-in containing the procedures: VB Editor&#8217;s Tools menu &gt; References. This is where having a unique project name is helpful, so you can recognize your add-in in the list. Otherwise you will see a handful of items names VBProject.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rich Gautier</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-13673</link>
		<dc:creator>Rich Gautier</dc:creator>
		<pubDate>Tue, 05 May 2009 18:18:36 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-13673</guid>
		<description>Hi:
  I developed an Add-in (xlam) for Excel 2007 for work that has some custom functions and custom macros.  I found how to add custom Ribbon panels for my project, but I&#039;d like the functions I&#039;ve built-in to show up in Intellisense.  I was browsing the web and noticed you say your add-in is available through Intellisense.  Can you tell me how you exposed your Add-in functions to Intellisense?

Thanks,
Rich</description>
		<content:encoded><![CDATA[<p>Hi:<br />
  I developed an Add-in (xlam) for Excel 2007 for work that has some custom functions and custom macros.  I found how to add custom Ribbon panels for my project, but I&#8217;d like the functions I&#8217;ve built-in to show up in Intellisense.  I was browsing the web and noticed you say your add-in is available through Intellisense.  Can you tell me how you exposed your Add-in functions to Intellisense?</p>
<p>Thanks,<br />
Rich</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-3978</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Mon, 15 Sep 2008 10:29:59 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-3978</guid>
		<description>Butch -

Depends what the problem is. Shutdown errors are tricky to fix, IT problems are even more tricky, and it&#039;s hard debugging computer problems via WordPress.</description>
		<content:encoded><![CDATA[<p>Butch -</p>
<p>Depends what the problem is. Shutdown errors are tricky to fix, IT problems are even more tricky, and it&#8217;s hard debugging computer problems via WordPress.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Butch Cooper</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-3975</link>
		<dc:creator>Butch Cooper</dc:creator>
		<pubDate>Mon, 15 Sep 2008 06:45:21 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-3975</guid>
		<description>So is there a way to go about fixing it, or do I just keep applying the add in every time?</description>
		<content:encoded><![CDATA[<p>So is there a way to go about fixing it, or do I just keep applying the add in every time?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Peltier</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-3968</link>
		<dc:creator>Jon Peltier</dc:creator>
		<pubDate>Sun, 14 Sep 2008 22:04:35 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-3968</guid>
		<description>Butch -

This behavior points to one of two things that I can think of.

1. Excel isn&#039;t shutting down properly, so it doesn&#039;t remember add-ins that were installed during the session. If you manually customize the interface (add a custom button), does the customization appear next time you start up Excel?

2. There is some kind of IT policy that uninstalls some or all add-ins. If it happens on multiple computers, I would suspect something like this.

It might be something completely unrelated.</description>
		<content:encoded><![CDATA[<p>Butch -</p>
<p>This behavior points to one of two things that I can think of.</p>
<p>1. Excel isn&#8217;t shutting down properly, so it doesn&#8217;t remember add-ins that were installed during the session. If you manually customize the interface (add a custom button), does the customization appear next time you start up Excel?</p>
<p>2. There is some kind of IT policy that uninstalls some or all add-ins. If it happens on multiple computers, I would suspect something like this.</p>
<p>It might be something completely unrelated.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Butch Cooper</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-3967</link>
		<dc:creator>Butch Cooper</dc:creator>
		<pubDate>Sun, 14 Sep 2008 19:09:50 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-3967</guid>
		<description>Not really a comment, but a question.

I have Office 2003 installed and the forms I use for work is in Excel and we added an add-in to update a couple of forms.

When we added the add-in originally, it stay checked. BUT, the last few months, every time we open the form, we MUST go back and make sure the add-in is checked.

It never stays checked.

It USED to, but it no longer does.

Is there an easy way to fix my problem or will I just &quot;ACCIDENTALLY&quot; have to drop my computer in the ocean? 

Any help on this would be FANTASTIC!</description>
		<content:encoded><![CDATA[<p>Not really a comment, but a question.</p>
<p>I have Office 2003 installed and the forms I use for work is in Excel and we added an add-in to update a couple of forms.</p>
<p>When we added the add-in originally, it stay checked. BUT, the last few months, every time we open the form, we MUST go back and make sure the add-in is checked.</p>
<p>It never stays checked.</p>
<p>It USED to, but it no longer does.</p>
<p>Is there an easy way to fix my problem or will I just &#8220;ACCIDENTALLY&#8221; have to drop my computer in the ocean? </p>
<p>Any help on this would be FANTASTIC!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tidy Up Your Charts &#171; Contextures Blog</title>
		<link>http://peltiertech.com/WordPress/installing-an-excel-add-in/comment-page-1/#comment-1747</link>
		<dc:creator>Tidy Up Your Charts &#171; Contextures Blog</dc:creator>
		<pubDate>Fri, 20 Jun 2008 18:21:50 +0000</pubDate>
		<guid isPermaLink="false">http://peltiertech.com/WordPress/?p=111#comment-1747</guid>
		<description>[...] you can download and install Jon Peltier&#8217;s free Align Chart Dimensions utility. There are installation instructions on Jon&#8217;s [...]</description>
		<content:encoded><![CDATA[<p>[...] you can download and install Jon Peltier&#8217;s free Align Chart Dimensions utility. There are installation instructions on Jon&#8217;s [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
