<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: A Beginner’s Guide to calling a .NET Library from Excel</title>
	<atom:link href="http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/feed/" rel="self" type="application/rss+xml" />
	<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/</link>
	<description></description>
	<lastBuildDate>Sat, 26 Dec 2009 11:13:04 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: efo</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3320</link>
		<dc:creator>efo</dc:creator>
		<pubDate>Mon, 21 Dec 2009 02:30:19 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3320</guid>
		<description>This guide I need, I was looking at google no one expected, this guide that I need thanks</description>
		<content:encoded><![CDATA[<p>This guide I need, I was looking at google no one expected, this guide that I need thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sohail Razzaq</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3211</link>
		<dc:creator>Sohail Razzaq</dc:creator>
		<pubDate>Tue, 06 Oct 2009 12:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3211</guid>
		<description>A very interesting article indeed. Specially you solved my problem by creating the config file for Excel.exe.

I am having problems with building an installer for this dll to deploy somewhere. if you could help.</description>
		<content:encoded><![CDATA[<p>A very interesting article indeed. Specially you solved my problem by creating the config file for Excel.exe.</p>
<p>I am having problems with building an installer for this dll to deploy somewhere. if you could help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3199</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Wed, 23 Sep 2009 13:17:25 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3199</guid>
		<description>First of all Very good tutorial. It is clear you understand this very well, I&#039;m hoping you also understand my similar problem and can point me in the right direction.

I am working with Visual Studio 2008 VB .net and Excel 2003 (and 2007 but that&#039;s another problem)
I would like to know what it would take to build a &quot;Self-Registering&quot; dll which contains an or multiple object which can be placed within the excel sheets as ole objects.

Thanks in advance.</description>
		<content:encoded><![CDATA[<p>First of all Very good tutorial. It is clear you understand this very well, I&#8217;m hoping you also understand my similar problem and can point me in the right direction.</p>
<p>I am working with Visual Studio 2008 VB .net and Excel 2003 (and 2007 but that&#8217;s another problem)<br />
I would like to know what it would take to build a &#8220;Self-Registering&#8221; dll which contains an or multiple object which can be placed within the excel sheets as ole objects.</p>
<p>Thanks in advance.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kethepalli</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3198</link>
		<dc:creator>Kethepalli</dc:creator>
		<pubDate>Tue, 22 Sep 2009 16:33:18 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3198</guid>
		<description>This answer for Rakesh. Sorry for confusion.</description>
		<content:encoded><![CDATA[<p>This answer for Rakesh. Sorry for confusion.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kethepalli</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3196</link>
		<dc:creator>Kethepalli</dc:creator>
		<pubDate>Tue, 22 Sep 2009 16:31:30 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3196</guid>
		<description>I created a class that holds the array collection. We just need to return the class object after populating the arrays.

Clase aArr
{
double [] abc;

private setValue(double[] values)
{
this.abc = values;
}
}


caller Code

aArr objArr = new aArr();
objArr.SetValue(PopulateddoubleArray);
return objArr;

Hope this helps you.</description>
		<content:encoded><![CDATA[<p>I created a class that holds the array collection. We just need to return the class object after populating the arrays.</p>
<p>Clase aArr<br />
{<br />
double [] abc;</p>
<p>private setValue(double[] values)<br />
{<br />
this.abc = values;<br />
}<br />
}</p>
<p>caller Code</p>
<p>aArr objArr = new aArr();<br />
objArr.SetValue(PopulateddoubleArray);<br />
return objArr;</p>
<p>Hope this helps you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bob N</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3180</link>
		<dc:creator>Bob N</dc:creator>
		<pubDate>Thu, 20 Aug 2009 14:28:16 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3180</guid>
		<description>The Excel.exe.config issue had me pulling my hair out!  Thanks much!!</description>
		<content:encoded><![CDATA[<p>The Excel.exe.config issue had me pulling my hair out!  Thanks much!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: AdultFriendl</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3140</link>
		<dc:creator>AdultFriendl</dc:creator>
		<pubDate>Mon, 13 Jul 2009 17:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3140</guid>
		<description>Here ya go as requested.. hope you enjoy free xxx video Adult Free Video Free Porn Video Free Adult Video


&lt;a href=&quot;http://www.adultfreevideos.eu/videos&quot; rel=&quot;nofollow&quot;&gt;Redtube&lt;/a&gt;




 </description>
		<content:encoded><![CDATA[<p>Here ya go as requested.. hope you enjoy free xxx video Adult Free Video Free Porn Video Free Adult Video</p>
<p><a href="http://www.adultfreevideos.eu/videos" rel="nofollow">Redtube</a></p>
<p> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rakesh</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3061</link>
		<dc:creator>Rakesh</dc:creator>
		<pubDate>Fri, 24 Apr 2009 15:32:48 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3061</guid>
		<description>I was able to implement this But the proble is when You try to retrun an array or Object It throw you and Exception on VBA side. Has anybody tried to implement that. Here;s My code.
using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.Reflection;

[assembly: ComVisible(true)]
[assembly: Guid(&quot;37496b5c-462a-4547-b57e-d9063256e443&quot;)]
[assembly: AssemblyVersion(&quot;1.0.0.0&quot;)]
[assembly: AssemblyFileVersion(&quot;1.0.0.0&quot;)]

namespace ExcelFunc
{
    [ClassInterface(ClassInterfaceType.AutoDual)]
    public class Functions
    {
        public double[] Add(double a, double b)
        {
            double[] ar = new double[1];
            ar[0] = a + b;
            return ar;
        }
    }
}

Function add_num()
    Dim f As New Functions
    Dim x() As Double
    x = f.Add(1, 1)
End Function</description>
		<content:encoded><![CDATA[<p>I was able to implement this But the proble is when You try to retrun an array or Object It throw you and Exception on VBA side. Has anybody tried to implement that. Here;s My code.<br />
using System;<br />
using System.Collections.Generic;<br />
using System.Text;<br />
using System.Runtime.InteropServices;<br />
using System.Reflection;</p>
<p>[assembly: ComVisible(true)]<br />
[assembly: Guid("37496b5c-462a-4547-b57e-d9063256e443")]<br />
[assembly: AssemblyVersion("1.0.0.0")]<br />
[assembly: AssemblyFileVersion("1.0.0.0")]</p>
<p>namespace ExcelFunc<br />
{<br />
    [ClassInterface(ClassInterfaceType.AutoDual)]<br />
    public class Functions<br />
    {<br />
        public double[] Add(double a, double b)<br />
        {<br />
            double[] ar = new double[1];<br />
            ar[0] = a + b;<br />
            return ar;<br />
        }<br />
    }<br />
}</p>
<p>Function add_num()<br />
    Dim f As New Functions<br />
    Dim x() As Double<br />
    x = f.Add(1, 1)<br />
End Function</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sergey</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3048</link>
		<dc:creator>Sergey</dc:creator>
		<pubDate>Thu, 16 Apr 2009 12:34:41 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3048</guid>
		<description>Indeed, the best article in order to get started with C# Excel interaction. However, one minor point is missing. How to handle events if they fired in C#? Solution to that may allow to utilize multi threading in C# and do calls asynchroniously from Excel. So far I found nothing on this subject. Any suggestions?

Thanks again,
Sergey</description>
		<content:encoded><![CDATA[<p>Indeed, the best article in order to get started with C# Excel interaction. However, one minor point is missing. How to handle events if they fired in C#? Solution to that may allow to utilize multi threading in C# and do calls asynchroniously from Excel. So far I found nothing on this subject. Any suggestions?</p>
<p>Thanks again,<br />
Sergey</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shri</title>
		<link>http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3010</link>
		<dc:creator>Shri</dc:creator>
		<pubDate>Sat, 14 Feb 2009 21:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://richnewman.wordpress.com/2007/04/15/a-beginner%e2%80%99s-guide-to-calling-a-net-library-from-excel/#comment-3010</guid>
		<description>I forgot mention, I am using VS2008 with .Net 3.5 SP1. I also strong named my assembly, so that issue should not be there.</description>
		<content:encoded><![CDATA[<p>I forgot mention, I am using VS2008 with .Net 3.5 SP1. I also strong named my assembly, so that issue should not be there.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
