<?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 for Add-in Express Blogs</title>
	<atom:link href="http://www.add-in-express.com/creating-addins-blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.add-in-express.com/creating-addins-blog</link>
	<description>All about developing COM add-ins, smart tags and RTD servers in Visual Studio .NET, VSTO and Delphi + Add-in Express</description>
	<lastBuildDate>Wed, 08 Feb 2012 06:42:04 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Setting up your PC for SharePoint 2010 development by an</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2011/11/24/setting-for-sharepoint-development/comment-page-1/#comment-12657</link>
		<dc:creator>an</dc:creator>
		<pubDate>Wed, 08 Feb 2012 06:42:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=5026#comment-12657</guid>
		<description>does this require 64bit windows7?
what are other requirements?</description>
		<content:encoded><![CDATA[<p>does this require 64bit windows7?<br />
what are other requirements?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Office Newswire: Office 15 begins technical preview &#8211; 2.1.2012 by Mathias Brandewinder</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2012/02/01/office-newswire-office15-technical-preview/comment-page-1/#comment-12652</link>
		<dc:creator>Mathias Brandewinder</dc:creator>
		<pubDate>Mon, 06 Feb 2012 18:15:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=5718#comment-12652</guid>
		<description>Thank you for the link to the VSTO Stocks project, much appreciated! This is still work in progress, but I plan on adding more features and comments/documentation over time, to illustrate some of the cool stuff that can be done using .NET and Office together - and I&#039;ll gladly take questions or comments!</description>
		<content:encoded><![CDATA[<p>Thank you for the link to the VSTO Stocks project, much appreciated! This is still work in progress, but I plan on adding more features and comments/documentation over time, to illustrate some of the cool stuff that can be done using .NET and Office together &#8211; and I&#8217;ll gladly take questions or comments!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Windows Installer Error 2908 when installing bulky setup projects by frankzeffi</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2007/11/12/windows-installer-error-2908/comment-page-2/#comment-12644</link>
		<dc:creator>frankzeffi</dc:creator>
		<pubDate>Sun, 05 Feb 2012 10:30:16 +0000</pubDate>
		<guid isPermaLink="false">/creating-addins-blog/?p=27#comment-12644</guid>
		<description>This was essential... Thanks</description>
		<content:encoded><![CDATA[<p>This was essential&#8230; Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Office 2010 Solutions Module and Add-in Express 2010 by Pieter van der Westhuizen</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2010/06/04/office2010-solutions-module/comment-page-1/#comment-12592</link>
		<dc:creator>Pieter van der Westhuizen</dc:creator>
		<pubDate>Tue, 31 Jan 2012 14:38:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=1820#comment-12592</guid>
		<description>Hi Dawie,

You can add the child folders to the mother folders&#039; Folders collection. Do this in the AddinModule_AddinStartupComplete event :

        &#039; Root Folder
        Dim motherFolder As New ADXOLSolutionFolder()
        motherFolder.FolderName = &quot;Mother&quot;
        motherFolder.FolderType = ADXOLSolutionFolderType.Notes

        &#039; Child Folders
        Dim childFolder1 As New ADXOLSolutionFolder()
        childFolder1.FolderName = &quot;Child1&quot;
        childFolder1.FolderType = ADXOLSolutionFolderType.Notes

        Dim childFolder2 As New ADXOLSolutionFolder()
        childFolder2.FolderName = &quot;Child2&quot;
        childFolder2.FolderType = ADXOLSolutionFolderType.Notes

        &#039; Add Child Folders to MotherFolder
        motherFolder.Folders.Add(childFolder1)
        motherFolder.Folders.Add(childFolder2)

        &#039; Add Mother Folder to Solutions Module
        AdxolSolutionModule1.Folders.Add(motherFolder)

Hope this helps!</description>
		<content:encoded><![CDATA[<p>Hi Dawie,</p>
<p>You can add the child folders to the mother folders&#8217; Folders collection. Do this in the AddinModule_AddinStartupComplete event :</p>
<p>        &#8216; Root Folder<br />
        Dim motherFolder As New ADXOLSolutionFolder()<br />
        motherFolder.FolderName = &#8220;Mother&#8221;<br />
        motherFolder.FolderType = ADXOLSolutionFolderType.Notes</p>
<p>        &#8216; Child Folders<br />
        Dim childFolder1 As New ADXOLSolutionFolder()<br />
        childFolder1.FolderName = &#8220;Child1&#8243;<br />
        childFolder1.FolderType = ADXOLSolutionFolderType.Notes</p>
<p>        Dim childFolder2 As New ADXOLSolutionFolder()<br />
        childFolder2.FolderName = &#8220;Child2&#8243;<br />
        childFolder2.FolderType = ADXOLSolutionFolderType.Notes</p>
<p>        &#8216; Add Child Folders to MotherFolder<br />
        motherFolder.Folders.Add(childFolder1)<br />
        motherFolder.Folders.Add(childFolder2)</p>
<p>        &#8216; Add Mother Folder to Solutions Module<br />
        AdxolSolutionModule1.Folders.Add(motherFolder)</p>
<p>Hope this helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Office 2010 Solutions Module and Add-in Express 2010 by Dawie</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2010/06/04/office2010-solutions-module/comment-page-1/#comment-12591</link>
		<dc:creator>Dawie</dc:creator>
		<pubDate>Tue, 31 Jan 2012 14:13:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=1820#comment-12591</guid>
		<description>Thanks Pieter,
I&#039;m createing the &quot;Mother&quot; folder with the designer. Then I want to be able to create the subfolders dynamically.
My code doesn&#039;t break and looks cool, but it doesn&#039;t show my subfolder :-(
I&#039;m doing this:

        Dim newFolder As AddinExpress.VSTO.ADXOLSolutionFolder = New AddinExpress.VSTO.ADXOLSolutionFolder()
        newFolder.FolderName = defaultStore &amp; &quot;\Mother\Northwind&quot;
        newFolder.FolderType = AddinExpress.VSTO.ADXOLSolutionFolderType.Notes
        AdxolSolutionFolder1.Folders.Add(newFolder)

        Dim AdxOlFormsCollectionItem3 As AddinExpress.OL.ADXOlFormsCollectionItem
        AdxOlFormsCollectionItem3 = New AddinExpress.OL.ADXOlFormsCollectionItem(Me.components)

        AdxOlFormsCollectionItem3.ExplorerLayout = AddinExpress.OL.ADXOlExplorerLayout.WebViewPane
        AdxOlFormsCollectionItem3.FolderName = defaultStore &amp; &quot;\Mother\Northwind&quot;
        AdxOlFormsCollectionItem3.FormClassName = &quot;MyVSTOAddin1.ADXOlForm1&quot;
        AdxOlFormsCollectionItem3.UseOfficeThemeForBackground = True

        Marshal.ReleaseComObject([nameSpace])</description>
		<content:encoded><![CDATA[<p>Thanks Pieter,<br />
I&#8217;m createing the &#8220;Mother&#8221; folder with the designer. Then I want to be able to create the subfolders dynamically.<br />
My code doesn&#8217;t break and looks cool, but it doesn&#8217;t show my subfolder :-(<br />
I&#8217;m doing this:</p>
<p>        Dim newFolder As AddinExpress.VSTO.ADXOLSolutionFolder = New AddinExpress.VSTO.ADXOLSolutionFolder()<br />
        newFolder.FolderName = defaultStore &amp; &#8220;\Mother\Northwind&#8221;<br />
        newFolder.FolderType = AddinExpress.VSTO.ADXOLSolutionFolderType.Notes<br />
        AdxolSolutionFolder1.Folders.Add(newFolder)</p>
<p>        Dim AdxOlFormsCollectionItem3 As AddinExpress.OL.ADXOlFormsCollectionItem<br />
        AdxOlFormsCollectionItem3 = New AddinExpress.OL.ADXOlFormsCollectionItem(Me.components)</p>
<p>        AdxOlFormsCollectionItem3.ExplorerLayout = AddinExpress.OL.ADXOlExplorerLayout.WebViewPane<br />
        AdxOlFormsCollectionItem3.FolderName = defaultStore &amp; &#8220;\Mother\Northwind&#8221;<br />
        AdxOlFormsCollectionItem3.FormClassName = &#8220;MyVSTOAddin1.ADXOlForm1&#8243;<br />
        AdxOlFormsCollectionItem3.UseOfficeThemeForBackground = True</p>
<p>        Marshal.ReleaseComObject([nameSpace])</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Office 2010 Solutions Module and Add-in Express 2010 by Pieter van der Westhuizen</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2010/06/04/office2010-solutions-module/comment-page-1/#comment-12585</link>
		<dc:creator>Pieter van der Westhuizen</dc:creator>
		<pubDate>Tue, 31 Jan 2012 11:31:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=1820#comment-12585</guid>
		<description>Hi Dawie, 

I have one here somewhere :) Although, it was created using Add-in Express 2010 for Office and .net.
I&#039;ll e-mail it to you.

Regards,
Pieter</description>
		<content:encoded><![CDATA[<p>Hi Dawie, </p>
<p>I have one here somewhere :) Although, it was created using Add-in Express 2010 for Office and .net.<br />
I&#8217;ll e-mail it to you.</p>
<p>Regards,<br />
Pieter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Office 2010 Solutions Module and Add-in Express 2010 by Pieter van der Westhuizen</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2010/06/04/office2010-solutions-module/comment-page-1/#comment-12584</link>
		<dc:creator>Pieter van der Westhuizen</dc:creator>
		<pubDate>Tue, 31 Jan 2012 11:23:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=1820#comment-12584</guid>
		<description>Hi Dawie!

The Solutions Module will work Add-in Express 2010 for Microsoft Office and VSTO, Standard.

All the best.
Pieter</description>
		<content:encoded><![CDATA[<p>Hi Dawie!</p>
<p>The Solutions Module will work Add-in Express 2010 for Microsoft Office and VSTO, Standard.</p>
<p>All the best.<br />
Pieter</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Office 2010 Solutions Module and Add-in Express 2010 by Dawie</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2010/06/04/office2010-solutions-module/comment-page-1/#comment-12581</link>
		<dc:creator>Dawie</dc:creator>
		<pubDate>Tue, 31 Jan 2012 08:23:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=1820#comment-12581</guid>
		<description>Pieter,  

I&#039;m using &quot;Add-in Express 2010 for Microsoft Office and VSTO, Standard&quot;
adxnet-v606-b4621-vsto-std

Will this work on it or do I have to upgrade?

Kind regards
Dawie</description>
		<content:encoded><![CDATA[<p>Pieter,  </p>
<p>I&#8217;m using &#8220;Add-in Express 2010 for Microsoft Office and VSTO, Standard&#8221;<br />
adxnet-v606-b4621-vsto-std</p>
<p>Will this work on it or do I have to upgrade?</p>
<p>Kind regards<br />
Dawie</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Office 2010 Solutions Module and Add-in Express 2010 by Dawie</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2010/06/04/office2010-solutions-module/comment-page-1/#comment-12580</link>
		<dc:creator>Dawie</dc:creator>
		<pubDate>Tue, 31 Jan 2012 08:02:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=1820#comment-12580</guid>
		<description>Hi Pieter,

This looks exactly like what I need.
Have you created an example addin of this for download?
Need to test and demo it.

Kind regards,
Dawie van Niekerk</description>
		<content:encoded><![CDATA[<p>Hi Pieter,</p>
<p>This looks exactly like what I need.<br />
Have you created an example addin of this for download?<br />
Need to test and demo it.</p>
<p>Kind regards,<br />
Dawie van Niekerk</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Insight of Add-in Express Loader by Sergey Grischenko (a member of the Add-in Express team)</title>
		<link>http://www.add-in-express.com/creating-addins-blog/2010/07/23/loader-insight/comment-page-1/#comment-12572</link>
		<dc:creator>Sergey Grischenko (a member of the Add-in Express team)</dc:creator>
		<pubDate>Mon, 30 Jan 2012 15:09:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.add-in-express.com/creating-addins-blog/?p=2181#comment-12572</guid>
		<description>Hi Mulugheta,

So far, I have not faced any issues with converting existing COM add-ins to .NET v4.0. If you have any difficulties, please let me know the details.</description>
		<content:encoded><![CDATA[<p>Hi Mulugheta,</p>
<p>So far, I have not faced any issues with converting existing COM add-ins to .NET v4.0. If you have any difficulties, please let me know the details.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

