User Mike Rosenblum - Stack Overflowmost recent 30 from stackoverflow.com2009-12-17T00:52:09Zhttp://stackoverflow.com/feeds/user/10429http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1916490/how-can-i-get-the-range-of-filtered-rows-using-excel-interop/1918403#19184030Answer by Mike Rosenblum for How can I get the Range of filtered rows using Excel Interop?Mike Rosenblum2009-12-16T22:56:56Z2009-12-16T22:56:56Z<p>Once you filtered the range, you can access the cells that pass the filter criteria by making use of the <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel.range.specialcells(office.11).aspx" rel="nofollow">Range.SpecialCells</a> method, passing in a valued of 'Excel.XlCellType.xlCellTypeVisible' in order to get the visible cells.</p>
<p>Based on your example code, above, accessing the visible cells should look something like this:</p>
<pre><code>Excel.Range visibleCells = sheet.UsedRange.SpecialCells(
Excel.XlCellType.xlCellTypeVisible,
Type.Missing)
</code></pre>
<p>From there you can either access each cell in the visible range, via the 'Range.Cells' collection, or access each row, by first accessing the areas via the 'Range.Areas' collection and then iterating each row within the 'Rows' collection for each area. For example:</p>
<pre><code>foreach (Excel.Range area in visibleCells.Areas)
{
foreach (Excel.Range row in area.Rows)
{
// Process each un-filtered, visible row here.
}
}
</code></pre>
<p>Hope this helps!</p>
<p>Mike</p>
http://stackoverflow.com/questions/1830726/monitoring-a-range-of-cells-inside-of-excel-2007-with-c-vsto/1857598#18575981Answer by Mike Rosenblum for monitoring a range of cells inside of excel 2007 with C#/VSTOMike Rosenblum2009-12-07T03:08:57Z2009-12-07T03:14:00Z<p>Using VSTO you have a few options:</p>
<ol>
<li>From the <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.worksheet.aspx" rel="nofollow">Excel.Worksheet </a> class, you can access the <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.worksheet.change.aspx" rel="nofollow">Worksheet.Change</a> event.
<li>From the <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.namedrange.aspx" rel="nofollow">NamedRange</a> class, you can access the <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.namedrange.change.aspx" rel="nofollow">NamedRange.Change</a> event (which uses the Microsoft.Office.Interop.Excel.DocEvents_ChangeEventHandler delegate that you mentioned in another comment).
<li>The NamedRange class also supports simple, one-way databinding via the <a href="http://msdn.microsoft.com/en-us/library/microsoft.visualstudio.tools.office.remotebindablecomponent.databindings.aspx" rel="nofollow">DataBindings</a> property, an example of which is shown in the discussion <a href="http://thedotnet.com/nntp/428906/showpost.aspx" rel="nofollow">How do I bind an array to a NamedRange</a>.
<li>Another possibility is the <a href="http://msdn.microsoft.com/en-us/library/9w9a2ck2.aspx" rel="nofollow">XmlMappedRange</a> control, which also supports databinding.
</ol>
<p>A good primer on using the NamedRange and XmlMappedRange can be found here: <a href="http://www.devx.com/assets/download/14091.pdf" rel="nofollow">The VSTO Programming Model</a>. A decent walkthrough using the NamedRange can be found in the <a href="http://blogs.interknowlogy.com/downloads/timhuckaby/teched2006/Huckaby%20VSTO%202005%20Guided%20Tour.doc" rel="nofollow">Visual Studio Tools for Office (VSTO) 2005 Guided Tour</a>.</p>
<p>I hope this helps...</p>
<p>Mike</p>
http://stackoverflow.com/questions/1592440/excel-2007-udf-how-to-add-function-description-argument-help/1595628#15956281Answer by Mike Rosenblum for Excel 2007 UDF: how to add function description, argument help?Mike Rosenblum2009-10-20T15:51:47Z2009-10-20T20:42:34Z<p>Some of this is easy to correct, other parts of it is rather hard. All of it is do-able, though, if you are willing to put the time in.</p>
<p>You wrote:</p>
<blockquote>
<p>I also see Equals, GetHashCode,
GetType, and ToString (which are
fairly undesirable to expose to the
Excel user)</p>
</blockquote>
<p>Yes, agreed, this definitely undesirable, but it can be prevented. This is occurring because your class is inheriting from 'System.Object', as all .NET classes do, and your default interface that is exposed to COM is including these members. This occurs, for example, if you use the 'ClassInterfaceAttribute', using the setting 'ClassInterfaceType.AutoDual'. </p>
<p>E.g. in C#: </p>
<pre><code>[ClassInterface(ClassInterfaceType.AutoDual)]
</code></pre>
<p>In VB.NET:</p>
<pre><code><ClassInterface(ClassInterfaceType.AutoDual)>
</code></pre>
<p>The use of 'ClassInterfaceType.AutoDual' should be avoided, however, in order to prevent the members inherited from 'System.Object' from being exposed (as well as to prevent potential versioning issues in the future). Instead, define your own interface, implement the interface in your class, and then mark your class with the 'ClassInterface' attribute with a value of 'ClassInterfaceType.None'. </p>
<p>E.g., using C#:</p>
<pre><code>[ComVisible(true)]
[Guid("5B88B8D0-8AF1-4741-A645-3D362A31BD37")]
public interface IClassName
{
double AddTwo(double x, double y);
}
[ComVisible(true)]
[Guid("010B0245-55BB-4485-ABAF-46DF4356DB7B")]
[ProgId("ProjectName.ClassName")]
[ComDefaultInterface(typeof(IClassName))]
[ClassInterface(ClassInterfaceType.None)]
public class ClassName : IClassName
{
public double AddTwo(double x, double y)
{
return x + y;
}
}
</code></pre>
<p>Using VB.NET:</p>
<pre><code><ComVisible(True)> _
<Guid("5B88B8D0-8AF1-4741-A645-3D362A31BD37")> _
Public Interface IClassName
Function AddTwo(ByVal x As Double, ByVal y As Double) As Double
End Interface
<ComVisible(True)> _
<Guid("010B0245-55BB-4485-ABAF-46DF4356DB7B")> _
<ProgId("ProjectName.ClassName")> _
<ComDefaultInterface(GetType(IClassName))> _
<ClassInterface(ClassInterfaceType.None)> _
Public Class ClassName
Implements IClassName
Public Function AddTwo(ByVal x As Double, ByVal y As Double) As Double _
Implements IClassName.AddTwo
Return x + y
End Function
End Class
</code></pre>
<p>By making use of the 'ClassInterfaceAtribute' with a value of 'ClassInterfaceType.None', the inherited 'System.Object' memebers are excluded, because the class's interface is not made COM-visible. Instead, only the implemented interface ('IClassName' in this example) is exported to COM.</p>
<p>The above is also making use of the 'ComDefaultInterfaceAttribute'. This is not very important, and does nothing if you implement only one interface -- as in this example -- but it is a good idea in case you add an interface later, such as IDTExtensibility2.</p>
<p>For more detail on this, see:</p>
<p>(1) <a href="http://blogs.msdn.com/andreww/archive/2008/01/23/managed-automation-add-ins.aspx" rel="nofollow">Managed Automation Add-ins</a> by Andrew Whitechapel.</p>
<p>(2) <a href="http://blogs.msdn.com/gabhan_berry/archive/2008/04/07/writing-custom-excel-worksheet-functions-in-c_2D00_sharp.aspx" rel="nofollow">Writing Custom Excel Worksheet Functions in C#</a> by Gabhan Berry.</p>
<p>Ok, now to the hard part. You wrote:</p>
<blockquote>
<p>Selecting my COM Server brings up the
<em>Function Arguments</em>[1] dialog with no argument information and no
description of the function.</p>
<p>Can I provide a description of the
function?</p>
<p>Can I provide a description of the
parameters?</p>
<p>Can I provide a category name for my
functions, so that I get something
better than just the ProgID?</p>
</blockquote>
<p>The easiest approach here is to make use of the <a href="http://msdn.microsoft.com/en-us/library/bb209988.aspx" rel="nofollow">Application.MacroOptions</a> method. This method enables you to provide a description of the function and specify which category under which you want it to be displayed. This approach does not allow you to specify any information for the functions parameters, unfortunately, but techniques that allow you to do so are very complicated, which I'll get to later. <em>[Correction: The 'Application.MacroOptions' method only works for UDFs created via VBA and cannot be used for automation add-ins. Read on for more complex approaches to handle registration of UDFs containe in an automation add-ins -- Mike Rosenblum 2009.10.20]</em></p>
<p>Note that the <a href="http://msdn.microsoft.com/en-us/library/aa195786(office.11).aspx" rel="nofollow">help files for Excel 2003</a> and <a href="http://msdn.microsoft.com/en-us/library/bb209988.aspx" rel="nofollow">help files for Excel 2007</a> state that a string can be provided to the category argument in order to provide a custom category name of your choice. Beware, however, that the <a href="http://msdn.microsoft.com/en-us/library/aa202499(office.10).aspx" rel="nofollow"> help files for Excel 2002 </a> do not. I do not know if this is an omission in the Excel 2002 help files, or if this is a new capability as of Excel 2003. I'm guessing the latter, but you would have to test to be sure.</p>
<p>The only way to get your parameter information into the Function Wizard is to use a rather complex technique involving the 'Excel.Application.ExecuteExcel4Macro' method. Be warned though: many Excel MVPs have struggled with this approach and failed to produce a result that is reliable. More recently, though, it appears that Jan Karel Pieterse (JKP) has gotten it worked out and has published the details here: <a href="http://www.jkp-ads.com/articles/RegisterUDF00.asp" rel="nofollow">Registering a User Defined Function with Excel</a>.</p>
<p>Skimming that article you'll see that it is not for the faint of heart. Part of the problem is that he wrote it for VBA / VB 6.0 and so all that code would have to be translated to VB.NET or C#. The key command, however, is the 'Excel.Application.ExecuteExcel4Macro' method, which is exposed to .NET, so everything should work fine.</p>
<p>As a practical matter, however, I vastly prefer using the 'Excel.Application.MacroOptions' approach because it is simple and reliable. It does not provide parameter information, but I have not yet had a strong need to motivate me to take on the 'ExecuteExcel4Macro' approach.</p>
<p>So, good luck with this, but my advice would be to utilize the 'MacroOptions', unless you are being paid by the hour. ;-)</p>
<p>-- Mike</p>
<p><strong>Follow-up to Hugh's Replies</strong></p>
<blockquote>
<p>I tried out calling
Application.MacroOptions in a Sub
New().</p>
<p>No Sub New() Semi-acceptable: Function
is listed under category ProgID.</p>
<p>Shared Sub New() Not acceptable:
build-time error. Cannot register
assembly "...\Foo.dll". Exception has
been thrown by the target of an
invocation.</p>
<p>Sub New() Not acceptable: category is
not listed in Insert Function dialog.
I suspect this is a problem both for
MacroOptions and for the more involved
route recommended by Charles.</p>
</blockquote>
<p>You can't use shared (aka "static") classes or constructors when exposing your classes to COM because COM has no knowledge of this concept and so it cannot compile -- as you found out! You might be able to apply a 'COMVisibleAttribute' with a value of 'False' to the shared constructor, to at least allow it to compile. But this wouldn't help you in this case anyway...</p>
<p>Trying to register your automation add-in via the automation add-in itself might prove tricky. I realize that this is desirable in order to keep it as a single, stand-alone component, but it might not be possible. Or at least this won't be easy.</p>
<p>The issue is that automation add-ins are demand loaded. That is, they are not really there until Excel attempts to access the first worksheet function from your automation add-in. There are two issues related to this:</p>
<p>(1) If you put your registration code within the constructor for your class, then, by definition, your function wizard information cannot exist until the function has been called for the first time.</p>
<p>(2) Your constructor might be executing when Excel is not ready to accept automation commands. For example, an automation add-in is typically demand-loaded when the user begins to type in the name of one of the user-defined functions (UDFs) defined in the automation add-in. The result is that the cell is in edit-mode when your automation add-in first loads. If you have automation code within your constructor during edit mode, many commands will fail. I do not know if the 'Excel.Application.MacroOptions' or 'Excel.Application.Excel4Macro' methods have a problem with this, but many commands will choke when trying to execute while the cell is in edit mode. And if the automation add-in is being loaded for the first time because it is being called while the Function Wizard is open, I have no idea if these methods can work right.</p>
<p>There is no easy solution to this if you wish to have your automation add-in to be completely stand-alone with no other support. You can, however, create a managed COM add-in that will register your automation add-in for you via 'Excel.Application.MacroOptions' or the 'Excel.Application.Excel4Macro' approach when Excel starts up. The managed COM add-in class can be in the same assembly as that of your automation add-in, so you still only need one assembly. </p>
<p>By the way, you could even use a VBA workbook or .XLA add-in to do the same -- use the Workbook.Open event in VBA to call the registration code. You just need <em>something</em> to call your registration code when Excel starts up. The advantage to using VBA in this case is that you could utilize the code from the Jan Karel Pieterse's <a href="http://www.jkp-ads.com/articles/RegisterUDF00.asp" rel="nofollow">Registering a User Defined Function with Excel</a> article as-is, without having to translate it to .NET.</p>
<blockquote>
<p>On the plus side, Mike's
recommendation to create an interface
to implement did kill off the annoying
extra methods that were exposed.</p>
</blockquote>
<p>lol, I'm glad something worked!</p>
<blockquote>
<p>This Microsoft article from early 2007
(via Mike's link) seems a rather
complete answer on the topic:</p>
<p>Automation Add-ins and the Function
Wizard</p>
<p>Each Automation Add-in has its own
category in the Excel Function Wizard.
The category name is the ProgID for
the Add-in; you cannot specify a
different category name for Automation
Add-in functions. Additionally, there
is no way to specify function
descriptions, argument descriptions,
or help for Automation Add-in
functions in the Function Wizard.</p>
</blockquote>
<p>This is a limitation for the 'Excel.Application.MacroOptions' approach only. (My apologies, I had forgotten about this limitation of the 'Excel.Application.MacroOptions' method with respect to automation add-ins when I wrote my original answer, above.) The more-complex 'Excel.Application. ExecuteExcel4Macro ' approach, however, absolutely does work for automation add-ins. It should also work for .NET ("managed") automation add-ins as well, because Excel has no idea whether it is loading a COM automation add-in created via VB 6.0/C++ versus a managed COM automation add-in created using VB.NET/C#. The mechanics are exactly the same from the COM side of the fence because Excel has no idea what .NET is, or that .NET even exists. </p>
<p>That said, the 'Excel.Application.Excel4Macro' approach would definitely be a lot of work...</p>
http://stackoverflow.com/questions/1558256/using-late-binding-to-get-a-specific-instance-of-excel-in-c/1559675#15596751Answer by Mike Rosenblum for Using late binding to get a specific instance of Excel in C#Mike Rosenblum2009-10-13T11:35:27Z2009-10-14T01:22:08Z<p>Getting a <em>particular</em> instance of Excel requires that you make use of the <a href="http://msdn.microsoft.com/en-us/library/dd317978(VS.85).aspx" rel="nofollow">AccessibleObjectFromWindow API</a>.</p>
<p>This is explained well in the article <a href="http://blogs.officezealot.com/whitechapel/archive/2005/04/10/4514.aspx" rel="nofollow">Getting the Application Object in a Shimmed Automation Add-in</a> by Andrew Whitechapel.</p>
<p>What you want, however, is to execute it using late binding. This is described in detail by <a href="http://stackoverflow.com/users/40347/divo">divo</a> here: <a href="http://stackoverflow.com/questions/779363/how-to-use-use-late-binding-to-get-excel-instance/779710#779710">How to use use late binding to get excel instance</a>.</p>
http://stackoverflow.com/questions/1527078/vb-net-com-server-implementing-excel-udf-not-callable-with-optional-excel-range/1533097#15330972Answer by Mike Rosenblum for VB.NET COM Server implementing Excel UDF not callable with optional Excel.RangeMike Rosenblum2009-10-07T17:37:03Z2009-10-13T13:27:17Z<p><strong>Updated Answer Regarding Optional Range Parameters</strong></p>
<p>Ok, after discussing the issue with some Excel MVPs, there's a couple of points I can add to this quirky issue regarding optional Range parameters when used in a user-defined function (UDF) created using VB.NET.</p>
<p>(1) The first is that this appears to be some sort of subtle issue regarding how Excel calls the .NET user-defined function; the issue cannot be replicated using VBA. For example, the following function written in VBA does not exhibit the same problem:</p>
<pre><code>Function OptionalRange4(Optional ByVal optRange1 As Excel.Range = Nothing, _
Optional ByVal optInt As Integer = 0, _
Optional ByVal optRange2 As Excel.Range = Nothing) _
As Variant
Dim arg1 As String
Dim arg2 As String
Dim arg3 As String
If optRange1 Is Nothing Then
arg1 = "<Nothing>"
Else
arg1 = optRange1.Address
End If
arg2 = CStr(optInt)
If optRange2 Is Nothing Then
arg3 = "<Nothing>"
Else
arg3 = optRange2.Address
End If
OptionalRange4 = arg1 + "|" + arg2 + "|" + arg3
End Function
</code></pre>
<p>(2) The other information I learned is that you can pass in multi-area ranges into a single parameter of a worksheet function by enclosing the entire range address in brackets. For example, the following formula will pass in two Range arguments to the "MyFunction", the first argument being a multi-area address:</p>
<pre><code>=MyFunction((A1:C3,D4:E5), G11)
</code></pre>
<p>So the two solutions available to you would appear to be:</p>
<p>(a) Change your parameter types from Range to Object and then cast the Object to a Range within your code. This would seem to be the cleanest and easiest approach.</p>
<p>(b) Create a VBA wrapper as your front-end, which then calls your Visual Basic.NET code. I'm sure that this is not what you would want, but I thought that I should mention it. For what it's worth, this approach is mandatory if wishing to use UDFs from VSTO, at least as of Visual Studio 2008. The article <a href="http://blogs.msdn.com/pstubbs/archive/2004/12/31/344964.aspx" rel="nofollow">How to create Excel UDFs in VSTO managed code</a> by Paul Stubbs describes this very approach.</p>
<p>That's all I can add Hugh. It is a subtle bug or flaw in how the Excel call tries to work it's way through the .NET Interop. I don't know why exactly it fails, but it does. Fortunately, the solution to it is not too onerous.</p>
<p>-- Mike</p>
<p><strong>Prior Answer Regarding Optional Range Parameters</strong></p>
<blockquote>
<p>I still don't know why I can't get
this to work:</p>
<pre><code>Function OptionalRange2(Optional ByVal optRange1 As Excel.Range =
</code></pre>
<p>Nothing, _
Optional ByVal optRange2 As Excel.Range =
Nothing) As Object _
Implements IFunctions.OptionalRange2</p>
<p>Both =OptionalRange2(E2:E7,F2:F7)
First =OptionalRange2(E2:E7,)<br />
Second =OptionalRange2(,F2:F7)<br />
Neither =OptionalRange2()<br />
Neither with comma =OptionalRange2(,) </p>
<p>[Calls to Both and Neither are successful.] Putting
in the comma changes the call. It's as
if with no comma, Excel sends two
Nothings but with the comma it does
something else -- </p>
<p>•send
System.Type.Missing/System.Reflection.Missing.Value?</p>
<p>•call Range.Value(), the default
function on Range, passing a parameter
of a different type?</p>
<p>Either way, it's
like there is a type mismatch at
runtime because it just does not get
into the debugger's stack frame.</p>
</blockquote>
<p>What's happening here is that Excel can get confused when passing in range arguments. The reason is that a range address can include a comma in it, such as the multi-area address "A1:C3, D4:E5". When you pass in such an address as a range argument, Excel has to make a determination as to whether this is a single multi-area range or consists of two single-area range arguments.</p>
<p>So the question is: which way does Excel interpret it?</p>
<p>The answer is that Excel always interprets the comma as an argument separator, so there is actually no way to pass in a multi-area range into a single parameter in Excel directly. To do that, you'd have to pass in a named range (such as defining a multi-area range named "MyRange") and then passing that into your user-defined worksheet function.</p>
<p>So, in these examples, when you pass in MyFunction(A1:C3, D4:E5), you are using up both parameters, not just one.</p>
<p>Ok, but where's the problem?</p>
<p>The problem is: how does Excel interpret the range address "A1:C3," when passed into a worksheet function? The answer is that Excel attempts to interpret this as a single range address with invalid syntax, since the final part of the address following the comma is missing. In short, it's a syntax error, so your function is never called in the first place, and a #VALUE results.</p>
<p>This is very unfortunate since I already said that Excel is supposed to give precedence to interpreting the comma as an argument separator, not as an area separator within a range address. But, alas, Excel is inconsistent here and it attempts to interpret a leading or trailing comma as part of the range address itself.</p>
<p>You hit on the solution yourself earlier: change the data type for these optional parameters from Range to Object and then cast the Object to Range within your code. If you do this, then Excel will no longer attempt to interpret the arguments as a Range and everything will work fine.</p>
<p>You can test the difference between the two approaches with the following user-defined functions:</p>
<pre><code>Function DualOptionalRanges(Optional ByVal optRange1 As Excel.Range = Nothing, _
Optional ByVal optRange2 As Excel.Range = Nothing) _
As Object _
Implements IFunctions.DualOptionalRanges
Dim arg1 As String = If(optRange1 IsNot Nothing, optRange1.Address, "<Nothing>")
Dim arg2 As String = If(optRange2 IsNot Nothing, optRange2.Address, "<Nothing>")
Return arg1 + "|" + arg2
End Function
Function DualOptionalVariants(Optional ByVal optVariant1 As Object = Nothing, _
Optional ByVal optVariant2 As Object = Nothing) _
As Object _
Implements IFunctions.DualOptionalVariants
Dim range1 As Excel.Range
Try
range1 = CType(optVariant1, Excel.Range)
Catch ex As Exception
range1 = Nothing
End Try
Dim range2 As Excel.Range
Try
range2 = CType(optVariant2, Excel.Range)
Catch ex As Exception
range2 = Nothing
End Try
Dim arg1 As String
If range1 IsNot Nothing Then
arg1 = range1.Address
Else
arg1 = If(optVariant1 IsNot Nothing, optVariant1.ToString(), "<Nothing>")
End If
Dim arg2 As String
If range2 IsNot Nothing Then
arg2 = range2.Address
Else
arg2 = If(optVariant2 IsNot Nothing, optVariant2.ToString(), "<Nothing>")
End If
Return arg1 + "|" + arg2
End Function
</code></pre>
<p>I think this should be the last hurdle. (Famous last words, right?)</p>
<p>-- Mike</p>
<p><strong>Answer Regarding IIF</strong></p>
<p>Bummer about the IIF ("immediate if") issue. I believe that other than the CType() and DirectCast() operators, and new functionality given to the IF keyword, everything that utilizes method syntax in VB.NET is, in fact, a method call that is executed at run-time. CType() and DirectCast() are the exceptions; they are casting mechanisms that are evaluated at compile-time, and the IF keyword can now be utilized as an operator using a method-like syntax, but it uses short-circuit evaluation instead of evaluating all parameters before evaluating the IF operator.</p>
<p>The lack of a short-circuit capability for IIF was discussed at length by Paul Vic in 2006 in the article <a href="http://www.panopticoncentral.net/archive/2006/12/29/18883.aspx" rel="nofollow">IIF, a True Ternary Operator and Backwards Compatibility</a>. The article shows a strong leaning towards changing IIF to use short-circuit evaluation as of VB.NET 2009. However, due to backwards-compatibility issues, they decided not to change the behavior of IIF and to simply extend how the IF keyword can be used, allowing it to be utilized as an operator. This is described in <a href="http://www.panopticoncentral.net/archive/2007/05/08/20433.aspx" rel="nofollow">IIF becomes If, and a true ternary operator</a>, also by Paul Vick.</p>
<p>Sorry you got snagged on this.</p>
<p>-- Mike</p>
<p><strong>Answer Regarding Naming Conflicts</strong></p>
<p>Hi Hugh,</p>
<p>I think you have a naming conflict with Excel's built-in 'DB' worksheet function. If you rename your user-defined function from "DB" to "MyDb" (or almost anything else) I think you'll be fine.</p>
<p>It was tough to know what might be going wrong with your add-in, because your code looks clean. So I created an automation add-in using VB.NET and experimented with your user-defined function (UDF) using the same exact parameter signature you described. I found no problems.</p>
<p>The automation add-in I used was defined as follows:</p>
<pre><code>Imports System
Imports System.Collections.Generic
Imports System.Runtime.InteropServices
Imports Microsoft.Win32
Imports System.Text
Imports Excel = Microsoft.Office.Interop.Excel
<ComVisible(True)> _
<Guid("7F1A3650-BEE4-4751-B790-3A527195C7EF")> _
Public Interface IFunctions
' * User-Defined Worksheet Functions Definitions *
Function MyDb(ByVal A As Integer, _
ByRef B As Excel.Range, _
ByRef C As Excel.Range, _
Optional ByVal D As Integer = 1, _
Optional ByVal E As Double = 0, _
Optional ByVal F As Excel.Range = Nothing, _
Optional ByVal G As Boolean = True, _
Optional ByVal H As Integer = 1) As Object
Function OptionalBoolean(Optional ByVal optBoolean As Boolean = False) As Object
Function OptionalDouble(Optional ByVal optDouble As Double = 0.0) As Object
Function OptionalInteger(Optional ByVal optInteger As Integer = 0) As Object
Function OptionalRange(Optional ByVal optRange As Excel.Range = Nothing) As Object
Function OptionalVariant(Optional ByVal optVariant As Object = Nothing) As Object
End Interface
<ComVisible(True)> _
<Guid("FCC8DC2F-4B44-4fb6-93B5-769E57A908A1")> _
<ProgId("VbOptionalParameters.Functions")> _
<ComDefaultInterface(GetType(IFunctions))> _
<ClassInterface(ClassInterfaceType.None)> _
Public Class Functions
Implements IFunctions
' * User-Defined Worksheet Functions */
Function MyDb(ByVal A As Integer, _
ByRef B As Excel.Range, _
ByRef C As Excel.Range, _
Optional ByVal D As Integer = 1, _
Optional ByVal E As Double = 0, _
Optional ByVal F As Excel.Range = Nothing, _
Optional ByVal G As Boolean = True, _
Optional ByVal H As Integer = 1) As Object _
Implements IFunctions.MyDb
Return "MyDb Successfully called"
End Function
Function OptionalBoolean(Optional ByVal optBoolean As Boolean = False) As Object _
Implements IFunctions.OptionalBoolean
Return optBoolean.ToString()
End Function
Function OptionalDouble(Optional ByVal optDouble As Double = 0.0) As Object _
Implements IFunctions.OptionalDouble
Return optDouble.ToString()
End Function
Function OptionalInteger(Optional ByVal optInteger As Integer = 0) As Object _
Implements IFunctions.OptionalInteger
Return optInteger.ToString()
End Function
Function OptionalRange(Optional ByVal optRange As Excel.Range = Nothing) As Object _
Implements IFunctions.OptionalRange
If optRange Is Nothing Then
Return "<No Range Provided>"
Else
Return optRange.Address
End If
End Function
Function OptionalVariant(Optional ByVal optVariant As Object = Nothing) As Object _
Implements IFunctions.OptionalVariant
If optVariant Is Nothing Then
Return "<No Argument Provided>"
Else
Return optVariant.ToString()
End If
End Function
' * automation add-in Registration *
<ComRegisterFunctionAttribute()> _
Public Shared Sub RegisterFunction(ByVal type As Type)
Registry.ClassesRoot.CreateSubKey( _
GetSubKeyName(type, "Programmable"))
Dim key As RegistryKey = _
Registry.ClassesRoot.OpenSubKey( _
GetSubKeyName(type, "InprocServer32"), _
True)
key.SetValue( _
String.Empty, _
System.Environment.SystemDirectory + "\mscoree.dll", _
RegistryValueKind.String)
End Sub
<ComUnregisterFunctionAttribute()> _
Public Shared Sub UnregisterFunction(ByVal type As Type)
Registry.ClassesRoot.DeleteSubKey( _
GetSubKeyName(type, "Programmable"), _
False)
End Sub
Private Shared Function GetSubKeyName(ByVal type As Type, ByVal subKeyCategory As String) As String
Dim sb As System.Text.StringBuilder = New System.Text.StringBuilder()
sb.Append("CLSID\{")
sb.Append(type.GUID.ToString().ToUpper())
sb.Append("}\")
sb.Append(subKeyCategory)
Return sb.ToString()
End Function
End Class
</code></pre>
<p>Using the above, one can test for individual optional parameters such as Booleans, Doubles, Integers, Ranges, or any Variant via the 'OptionalBoolean', 'OptionalDouble', 'OptionalInteger', 'OptionalRange', and 'OptionalVariant' functions. And the complete function signature in question can be tested via the 'MyDb' function. None of the above failed in my testing, unless passing in an obviously incompatible argument type, such as passing in a string into an integer or double parameter, passing a numeric value into a range parameter, or the like.</p>
<p>There are problems, however, when naming the main user-defined function "DB", because this conflicts with Excel's built-in "DB" worksheet function, which stands for "Declining Balance" and has existed since at least Excel '97. Basically, because the user-defined function in your automation add-in has the same name as Excel's built-in version, your UDF is ignored.</p>
<p>In my testing using Excel 2007, I could not get Excel to recognize your 'DB' user-defined function at all. I'm not sure why you seemed to get erratic behavior, where your call sometimes came through and sometimes did not. It is possible that earlier versions of Excel handle this naming conflict differently.</p>
<p>The bottom line is, though, that you should be able to rename your UDF and then have no problems. I don't see anything else that could be causing this.</p>
<p>I hope this does it for you Hugh, fingers crossed....</p>
<p>Mike</p>
<p><strong>Answer Regarding Optional Data Types</strong></p>
<p>With this amount of information, I can only guess, but I do not think that you are not violating any COM Interop rules.</p>
<p>My guess is that the problem has to do with what arguments you are providing to your function. If the arguments passed into the user-defined function (UDF) do not match the expected parameter types, then Excel will throw a #VALUE! error without ever calling your code at all.</p>
<p>So in your third scenario, which is failing, you are passing in one of the parameters incorrectly. For example, the signature for the 'F' parameter is:</p>
<pre><code>Optional ByVal F As Range = Nothing
</code></pre>
<p>With this signature, if you pass it a value directly, such as a string "Hello", then a #VALUE! error will result without your code ever getting called. If you passed in a cell reference that held the value "Hello", however, then the 'F' parameter would accept this with no problem.</p>
<p>What you need to do is to try calling your UDF while very carefully considering the parameter types being passed in. Change the parameters one at a time and see which force your UDF to at least be called. You can either set a breakpoint, or have your UDF return "Success" or the like just for debugging purposes. The key for now is just to figure out what the correct parameter types are. I have a feeling that if you do this you will figure out what is wrong very quickly.</p>
<p>Actually, I <em>think</em> I might see the problem:</p>
<p>I'm a bit suspicious of your 'Integer' parameters, which are parameter's 'A', 'D', and 'H'. If you pass an integer value into the function directly, then these parameters should work fine. But if you pass in a cell reference, then Excel will automatically pass in the Range.Value for that cell, automatically -- which is what you want...</p>
<p>... but the problem is that Excel cells can never hold an 'Integer' data type! They can hold "Integer" values, such as 0, 1, 2, -1, etc., of course, but these are actually typed as 'Double' when held by the cell. To prove this, you can assign an Integer to the Cell.Value, but it will be stored as a Double -- if you check the data type held by the Cell.Value via TypeName() or .GetType().ToString(), it will return "Double".</p>
<p>Cells can holds Booleans, Strings, Double, Date, Currency (which translates to Decimal in .NET), and CVErr values, and that's it. Under standard usage they cannot return an 'Integer'. (If directly accessing the XLOPER via a C++ XLL then you technically <em>could</em> access integer values, but this is a very non-standard, and you can't do this from VB.NET or C#.)</p>
<p>Therefore, I would focus on these Integer parameters first, particularly with respect to passing in an Integer value directly versus passing in a cell reference that holds a numeric value. I'm guessing that the non-optional 'A' parameter might be able to accept a cell reference -- but maybe not, I'm not sure -- but I'm even less sure that the optional parameters can accept a cell reference holding a Double data type.</p>
<p>So, overall, I'm guessing here, but I think you should be able to start with a working set of parameters and then change each parameter one by one to see which call works or fails for each parameter.</p>
<p>Good luck, Hugh, let us know how this goes...</p>
<p>Mike</p>
http://stackoverflow.com/questions/1538597/excel-refreshing-specific-formulas-in-worksheet-programmatically/1557722#15577220Answer by Mike Rosenblum for Excel : Refreshing specific formulas in worksheet programmatically.Mike Rosenblum2009-10-13T00:51:17Z2009-10-13T00:51:17Z<blockquote>
<p>what i mean is i have developed an excel plugin.. It exposes
3 user defined formulas (x, y , z) to
excel application. All that works
fine.. Now i need to add a refresh
button that when clicked will refresh
only those (x, y and z) formulas in
the worksheet. So in the button's
click handler what code i need to
write?? Writing
Application.CalculateFull() refreshes
all the formulas. Thats not what i
want.</p>
</blockquote>
<p>My top suggestion to achieve this would be to do a Find/Replace of the name of your user defined function (UDF) across the entire workbook. For example, if your UDF were named "MyFunction" you would want to replace "MyFunction(" with "MyFunction(". </p>
<p>Assuming that your Excel.Application reference were named 'excelApp', code to do a find/replace across all workbooks using C# could look as follows:</p>
<pre><code>foreach (Excel.Workbook workbook in excelApp.Workbooks)
{
foreach (Excel.Worksheet worksheet in workbook.Worksheets)
{
worksheet.Cells.Replace(
"MyFunction(",
"MyFunction(",
Excel.XlLookAt.xlPart,
Excel.XlSearchOrder.xlByRows,
false,
Type.Missing,
Type.Missing,
Type.Missing);
}
}
</code></pre>
<p>Other lesser ideas:</p>
<p>(a) Utilize a Real-Time Data (RTD) server. This is usually utilized for having data such as stock prices update frequently or continuously. This could also be used, however, to execute your "Refresh On Demand" approach. I personally think that this would be overkill in in this case, as Find/Replace works 100% perfectly and is far easier to implement, but RTD could definitely be used here. For an article on how to do this, see <a href="http://msdn.microsoft.com/en-us/library/aa140061(office.10).aspx" rel="nofollow">Building Excel Real-Time Data Components in Visual Basic .NET</a> it's geared towards VB.NET, not C#, but the principles are identical.</p>
<p>(b) Add another parameter to your function MyFunction(x, y, z, Refresh). By having each function reference the 'Refresh' cell, which can be placed on a hidden worksheet or hidden workbook, you can change the 'Refresh' cell to force all your functions to recalculate. The downside is that it requires this extra, dummy parameter.</p>
<p>(c) Stick with Application.CalculateFull(), as this is by far the easiest to code. I understand the performance issues, but it is extremely easy to code (just one line) and is 100% reliable.</p>
<p>Overall, I think that I would go with the Find/Replace approach. It is a clean, simple, and very effective technique for selective recalculations.</p>
<p>-- Mike</p>
http://stackoverflow.com/questions/1553417/upload-excel-file-and-display-in-grid-in-asp-net-mvc/1556926#15569260Answer by Mike Rosenblum for Upload Excel File and display in Grid in asp.net MVCMike Rosenblum2009-10-12T21:03:33Z2009-10-12T21:03:33Z<p>I think that it would be best, in this case, to use ADO.NET.</p>
<p>A few articles on how to do this in order to read values from an Excel Worksheet:</p>
<p>(1) <a href="http://davidhayden.com/blog/dave/archive/2006/05/26/2973.aspx" rel="nofollow">Reading and Writing Excel Spreadsheets Using ADO.NET C# DbProviderFactory (David Hayden)</a></p>
<p>(2) <a href="http://www.codeproject.com/KB/office/ExcelToDataset.aspx" rel="nofollow">Import Excel File to DataSet (CodeProject)</a></p>
<p>(3) <a href="http://blog.lab49.com/archives/196" rel="nofollow">Tips for reading Excel spreadsheets using ADO.NET (Lab49)</a></p>
<p>(4) <a href="http://stackoverflow.com/questions/15828/reading-excel-files-from-c">Reading Excel files from C# (Stack Overflow)</a></p>
<p>I think that this should get you to where you need to go.</p>
<p>-- Mike</p>
http://stackoverflow.com/questions/1516500/open-excel-workbook-in-c/1518060#15180600Answer by Mike Rosenblum for open Excel workbook in C#Mike Rosenblum2009-10-05T02:42:44Z2009-10-06T01:42:21Z<p>You are explicitly passing in 'false' for the 'ReadOnly' parameter, so this behavior is odd.</p>
<p>I have two ideas here:</p>
<p>(1) Are you sure that your workbook is a .XLS file and not a .XLT? if it is a .XLT, as in "C:\template.xlt" instead of "C:\template.xls", then the behavior you are seeing is NORMAL, because your workbook is being opened as a template. Change the extension to ".XLS" and you will get the behavior that you want.</p>
<p>(2) If you cannot get it to behave the way you want, then change your procedure to call 'Workbooks.Open', then immediately call 'Workbooks.SaveAs' and set the workbook name and/or file path location to whatever location you want. Thereafter, any call to 'Save' by the user (or via code) would save the workbook without opening the Save As dialog box.</p>
<p><strong>Update</strong></p>
<p>Ok, other thoughts:</p>
<p>You should try opening the workbook manually and then try to save it. Do you get the same problem? Does this happen when this workbook is the only workbook that is open, or only when others are open as well? Does renaming the workbook help? </p>
<p>The bottom line, though, is that it really does sound like some sort of bizarre corruption. If none of the above yield anything interesting -- or probably even if they do -- you would probably want to start over with a new workbook. Beginning with a blank workbook, give it the same name and putting it in the same location. Does it work now (at least in terms of opening and saving). Then try adding your data and other aspects to it. It will be work, but you should be able to re-build this workbook and get it working.</p>
<p>-- Mike</p>
http://stackoverflow.com/questions/1506858/how-to-get-com-server-for-excel-written-in-vb-net-installed-and-registered-in-aut/1506932#15069324Answer by Mike Rosenblum for How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list?Mike Rosenblum2009-10-01T22:56:43Z2009-10-05T02:28:22Z<p>Hi Hugh,</p>
<p>I took a shot at deploying an automation add-in over the weekend. It turns out that it is enormously complicated (not a surprise to you!) and I could find absolutely no sources on the internet on how to do this properly. None. </p>
<p>There are sources that describe how to use RegAsm, but none how to correctly use a Setup Project to register an automation add-in, which is a little different from your standard COM add-in.</p>
<p>Fortunately, I was able to solve it. Here's what I found out:</p>
<p>If you read some of the articles on how to create and register your C# automation add-in, you'll see that you need to add a registry key named "Programmable" at HKEY_CLASSES_ROOT\CLSID\{GUID}, where "{GUID}" is the Guid of your COM-visible class.</p>
<p>This is generally done by adding a pair of methods marked by the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.comregisterfunctionattribute.aspx" rel="nofollow">ComRegisterFunctionAttribute</a> and the <a href="http://msdn.microsoft.com/en-us/library/system.runtime.interopservices.comunregisterfunctionattribute.aspx" rel="nofollow">ComUnregisterFunctionAttribute</a>. A good example of this comes from the article <a href="http://blogs.msdn.com/gabhan_berry/archive/2008/04/07/writing-custom-excel-worksheet-functions-in-c_2D00_sharp.aspx" rel="nofollow">Writing Custom Excel Worksheet Functions in C#</a> by Gabhan Berry:</p>
<pre><code>// C#:
[ComRegisterFunctionAttribute]
public static void RegisterFunction(Type type) {
Registry.ClassesRoot.CreateSubKey(GetSubKeyName(type));
}
[ComUnregisterFunctionAttribute]
public static void UnregisterFunction(Type type) {
Registry.ClassesRoot.DeleteSubKey(GetSubKeyName(type), false);
}
private static string GetSubKeyName(Type type) {
string s = @"CLSID\{" + type.GUID.ToString().ToUpper() + @"}\Programmable";
return s;
}
</code></pre>
<p>Translated to VB.NET, this works out to:</p>
<pre><code>'VB.NET:
<ComRegisterFunctionAttribute()> _
Public Shared Sub RegisterFunction(ByVal type As Type)
Registry.ClassesRoot.CreateSubKey(GetSubKeyName(type))
End Sub
<ComUnregisterFunctionAttribute()> _
Public Shared Sub UnregisterFunction(ByVal type As Type)
Registry.ClassesRoot.DeleteSubKey(GetSubKeyName(type), false)
End Sub
Private Shared Function GetSubKeyName(ByVal type As Type) As String
Dim s As String = ("CLSID\{" _
+ (type.GUID.ToString.ToUpper + "}\Programmable"))
Return s
End Function
</code></pre>
<p>The method marked by the ComRegisterFunctionAttribute is automatically called by RegAsm when the assembly for this class is registered. The method marked by the ComUnregisterFunctionAttribute is automatically called by RegAsm when the assembly for this class is being unregistered via the /u switch.</p>
<p>The problem is that the ComRegisterFunctionAttribute and ComUnregisterFunctionAttribute are <em>completely ignored when installing via a Visual Studio Setup Project.</em></p>
<p>This seems surprising at first, because the Visual Studio Setup Project runs RegAsm using the /regfile switch in order to generate a .REG file containing all of the required registry keys. It is this .REG file that is then utilized then the .MSI package is run at the client site. </p>
<p>From <a href="http://www.simple-talk.com/dotnet/visual-studio/build-and-deploy-a-.net-com-assembly/" rel="nofollow">Build and Deploy a .NET COM Assembly</a> by Phil Wilson:</p>
<blockquote>
<p>How does Visual Studio work out the
COM class registration entries? Well,
if you have configured the Fusion Log
Viewer (Fuslogvw.exe in the .NET 2.0
SDK) to record assembly loading, run
it after the build of your setup and
you'll notice that Regasm.exe actually
runs during the build of your setup
project. However, it doesn't perform
any registration. What happens is that
Visual Studio runs Regasm with the
/regfile option to create a .reg file
containing the registry entries
required to get the information for
step 1, and this .reg file is
internally imported into the setup
project. So if you want to see what
class registration entries Visual
Studio will create in the MSI setup,
you can run Regasm yourself with the
/regfile option</p>
</blockquote>
<p>Upon running RegAsm myself using the /regfile switch, however, I noticed that the "Programmable" switch was <em>not</em> being included. I then put logging within my methods marked by the ComRegisterFunctionAttribute and ComUnregisterFunctionAttribute and found that they are both called when running RegAsm without the /regfile switch, but are <em>not</em> called when run with the /regfile switch, nor are they called when run via the .MSI package created by the Visual Studio Setup Project.</p>
<p>The <a href="http://msdn.microsoft.com/en-us/library/tzat5yw6(VS.71).aspx" rel="nofollow">help files for Regasm.exe</a> confirm this (emphasis added):</p>
<blockquote>
<p>You can use the /regfile option to
generate a .reg file that contains the
registry entries instead of making the
changes directly to the registry. You
can update the registry on a computer
by importing the .reg file with the
Registry Editor tool (Regedit.exe).
<strong>Note that the .reg file does not contain any registry updates that can
be made by user-defined register
functions.</strong></p>
</blockquote>
<p>The solution, then, is to add the "Programmable" key ourselves. This can be done as follows:</p>
<ol>
<li>
Within the Setup Project, open up the Registry Editor. Create a new Key named CLSID under HKEY_CLASSES_ROOT by right-clicking on the HKEY_CLASSES_ROOT folder, then choosing 'New', and then 'Key'.
</li>
<li>Under the CLSID key, add a new key named for your GUID, including the curly braces.
</li>
<li>
Under the new GUID key you added, add a key named Programmable. You don't need to put any value within this key; however, we do need to force it to be created. Therefore, right-click on the Programmable key and choose 'Properties Window'. Then change the 'AlwaysCreate' property to 'True'.
</li>
</ol>
<p>Once you've done this, you no longer need the methods marked with ComRegisterFunctionAttribute and ComUnregisterFunctionAttribute, but I would still leave them in for those occasions when you intall via RegAsm and not via the Setup Project.</p>
<p>At this point you are ready to deploy. Build your solution and then right click on your Setup Project and choose 'Build'. You can then use the created Setup.exe and .MSI files to deploy to a client machine.</p>
<p>Something else to consider, however, is that when adding the automation add-in via Excel's add-ins dialog box, an error message will be shown stating that "Mscoree.dll cannot be found, would you like to delete the add-in?" or something very similar. This error message can be ignored, and your add-in will run no matter what you answer, but it can be alarming to a client installing your add-in.</p>
<p>This situation, and the explanation of how to solve it, is well described in the article <a href="http://blogs.msdn.com/eric_carter/archive/2004/12/01/273127.aspx" rel="nofollow">Writing user defined functions for Excel in .NET</a> by Eric Carter.</p>
<p>The problem is that the default value for the InprocServer32 key is simply "mscorree.dll", which is sufficient for .NET to find it, but causes Excel to complain. The solution is to make sure that the default value for the InprocServer32 key includes the full path to your system directory. For example, on 32 bit windows, it should read "C:\Windows\system32\mscoree.dll". This path needs to vary, however, depending on the system it is installed on. So this path should not be hard-coded.</p>
<p>Eric Carter handles this by modifying the methods marked by the ComRegisterFunctionAttribute and ComUnregisterFunctionAttribute to be the following:</p>
<pre><code>// C#:
[ComRegisterFunctionAttribute]
public static void RegisterFunction(Type type)
{
Registry.ClassesRoot.CreateSubKey(
GetSubKeyName(type, "Programmable"));
RegistryKey key = Registry.ClassesRoot.OpenSubKey(
GetSubKeyName(type, "InprocServer32"), true);
key.SetValue("",
System.Environment.SystemDirectory + @"\mscoree.dll",
RegistryValueKind.String);
}
[ComUnregisterFunctionAttribute]
public static void UnregisterFunction(Type type)
{
Registry.ClassesRoot.DeleteSubKey(
GetSubKeyName(type, "Programmable"), false);
}
private static string GetSubKeyName(Type type,
string subKeyName)
{
System.Text.StringBuilder s =
new System.Text.StringBuilder();
s.Append(@"CLSID\{");
s.Append(type.GUID.ToString().ToUpper());
s.Append(@"}\");
s.Append(subKeyName);
return s.ToString();
}
</code></pre>
<p>Translated to VB.NET, this is equivalent to:</p>
<pre><code>'VB.NET:
<ComRegisterFunctionAttribute()> _
Public Shared Sub RegisterFunction(ByVal type As Type)
Registry.ClassesRoot.CreateSubKey(GetSubKeyName(type, "Programmable"))
Dim key As RegistryKey = Registry.ClassesRoot.OpenSubKey(GetSubKeyName(type, "InprocServer32"), true)
key.SetValue("", (System.Environment.SystemDirectory + "\mscoree.dll"), RegistryValueKind.String)
End Sub
<ComUnregisterFunctionAttribute()> _
Public Shared Sub UnregisterFunction(ByVal type As Type)
Registry.ClassesRoot.DeleteSubKey(GetSubKeyName(type, "Programmable"), false)
End Sub
Private Shared Function GetSubKeyName(ByVal type As Type, ByVal subKeyName As String) As String
Dim s As System.Text.StringBuilder = New System.Text.StringBuilder
s.Append ("CLSID\{")
s.Append(type.GUID.ToString.ToUpper)
s.Append ("}\")
s.Append (subKeyName)
Return s.ToString
End Function
</code></pre>
<p>This works, but has the same exact problem where the assembly is properly registered when running RegAsm on the local machine, but fails when attempting to use this within a Visual Studio Setup Project.</p>
<p>The solution, again, is to add our own registry keys. This time, however, we'll have to create a default value that makes use of the "[SystemFolder]" property, which is equivalent to the 'System.Environment.SystemDirectory' call used within Eric Carter's code, above.</p>
<p>To do this, add a Key named "InprocServer32" under your CLSID\{GUID} key that we created previously. Then right-click on the new InprocServer32 key and choose 'New' then 'String Value'. The result will be a new Value named "New Value #1", but you will be in edit mode allowing you to re-name it. What you want to do here is <em>delete all the characters and then hit enter</em>. By deleting all the characters from the name, you are creating a default value and the icon for the registry value will be automatically renamed "(Default)". Then right-click on this Default Value icon and choose 'Properties Window'. Within the properties window, set the Value property to "[SystemFolder]mscoree.dll" (without the quotes).</p>
<p>You can then right-click on your Setup Project and choose 'Build' and then you are ready to deploy.</p>
<p>There is just one last thing to worry about. If you are installing to Excel 2007 or above, the foregoing will work 100%. If you are installing on Excel 2003 or below, however, you will need to include the following:</p>
<p><a href="http://support.microsoft.com/kb/908002" rel="nofollow">FIX: Add-ins, smart documents, or smart tags that you create by using Microsoft Visual Studio 2005 do not run in Office</a></p>
<p>A detailed explaination of how to deploy it is given by Divo <a href="http://stackoverflow.com/questions/553794/can-a-net-word-2003-add-in-be-installed-outside-of-the-gac/553886#553886">here</a>. </p>
<p>If you do not apply this fix, everything will register correctly, and you can even add your automation add-in succesfully -- everything seems fine -- but your worksheet functions will fail and you'll still get #NAME? errors as a result. (But, again, you don't need this for Excel 2007 and above.)</p>
<p>So, in the end, the TLB does not matter. In all my testing I used RegAsm witout the /TLB switch and did not include any TLB when registering via the Setup Project. So I had no trouble doing this from Vista, <a href="http://stackoverflow.com/questions/742851/how-add-a-com-exposed-net-project-to-the-vb6-or-vba-references-dialog">which has issues when attempting to add a TLB file to a Setup Project</a>.</p>
<p>I hope this helps, Hugh, and hopefully anyone else who might stumble onto this thread in the future...</p>
<p>Mike</p>
http://stackoverflow.com/questions/742851/how-add-a-com-exposed-net-project-to-the-vb6-or-vba-references-dialog5How Add a COM-Exposed .NET Project to the VB6 (or VBA) References Dialog?Mike Rosenblum2009-04-13T02:03:17Z2009-10-01T23:06:00Z
<p>I have created a .NET assembly that is exposed to COM according to the exceptional article <a href="http://www.simple-talk.com/dotnet/visual-studio/build-and-deploy-a-.net-com-assembly/" rel="nofollow">Build and Deploy a .NET COM Assembly</a> by Phil Wilson.</p>
<p>And everything works fine in the sense that the .NET assembly is properly registered for COM, and compiled COM code can call it without any trouble.</p>
<p>The only odd thing is that developing against the COM-exposed .NET assembly when using VB 6.0 or VBA requires that the programmer 'browse' to the exact file location of the associated .tlb file, after which everything works just fine. That is, the class library is not showing up directly within the References dialog box, so you must browse to the file location.</p>
<p>Again, the COM Interop aspects do work 100%; however, I would think that there must be some setting that would make the library directly visible within the References dialog for VB 6.0 and VBA. </p>
<p>Does anyone know what this setting would be? Or should this be happening automatically for me just by having it registered?</p>
<p>Much thanks in advance for any advice...</p>
<p>Mike</p>
<p><strong>Edit/Update</strong> </p>
<p>To answer jpoh's question about whether I'm using the /codebase switch, I'm using a .msi Setup Package, and not explicitly using RegAsm. The assembly is being correctly registered, which can be seen by the fact that within HKCR\CLSID{myGUID}\InprocServer32, the 'CodeBase' key correctly holds the full path to the assembly. Compiled COM components execute against this dll just fine, it's only when developing against it using VB 6.0 or VBA that they do not appear within the references dialog box. I therefore need to 'browse' to the correct file location, after which it works 100% fine.</p>
<p><strong>Update #2</strong> </p>
<p>Upon further research, it appears that, although the class GUIDs are being registered properly, my .tlb file is not being registered. I have no idea why not. Registering the .tlb file should put some registry entries for the interface on which my class is based at HKCR\Interface{myInterfaceGUID}, but this is not occurring. Strange that this lack of registration does not seem to affect the dll's ability to function, other than its discoverability within VB6's and VBA's references dialog.</p>
<p>The properties for my .tlb file within the Setup Project do seem to be correct: the 'PackageAs' property is set to 'vsdpaDefault' and the 'Register' property is set to 'vsdrfCOM'. I am puzzled as to why this would not be successfully installed on the target machine.</p>
<p><strong>Update #3</strong></p>
<p>Ok, it turns out that the Setup Project is <em>not</em> being built successfully... despite it reporting that the "Build Succeeded".</p>
<p>There is actually a build warning (amazingly, a warning, not an error) being reported that it as "Unable to create registration information for file name 'DotNetLibrary3.tlb'". Since this was a warning, and not an error, the compile was stating "Build Succeeded" and the Error List was <em>not</em> opening up.</p>
<p>Tracking this down, it seems that this can be an issue when attempting to create a Setup Project when Vista is your development machine, as described here:</p>
<p><a href="http://social.msdn.microsoft.com/forums/en-US/winformssetup/thread/c571f910-0ad6-4a00-8bce-bcc15b5b5337/" rel="nofollow">COM typelib registration problem in VS2008 Setup project</a></p>
<p>There is a somewhat manual fix described here:</p>
<p><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=356321&wa=wsignin1.0" rel="nofollow">Feedback: Unable to create registration information for file named 'filename'</a></p>
<p>I have not tried the fix yet, but I will tomorrow and I'll report back if this solves it.</p>
<p><strong>Update #4</strong></p>
<p>That did not work out so well... It seems that running RegCap.exe as suggested in that article does not work when running on Vista. Since RegCap is actually run internally by the setup project itself on creating the .msi, this is not terribly surprising. In short, the setup project was almost certainly failing because the RegCap command that it was calling was failing... So calling RegCap directly is of no help.</p>
<p>The bottom line is that this is simply a bug when attempting to create a setup package on Vista. Or, perhaps it is a combination of Visual Studio 2008 and Vista, I'm not sure. Attempting the same exact approach is to create a setup project on Visual Studio 2005 running on Windows XP had absolutely no problems whatsoever.</p>
<p>There very well may be fixes to get this running right on Vista and/or Visual Studio 2008, but I could not track it down. Much more efficient for me was to build using Visual Studio 2005 on Windows XP to generate the COM registration requirements, and then to import them into my Visual Studio 2008 setup project. These can be exported as .REG files via regasm using a /regfile switch against the dll and using RegCap (running on W'XP!) against the .tlb file. Since my COM interfaces will not be changing, I only have to do this once.</p>
<p>Hopefully this issue in Visual Studio 2008 when running on Vista will be corrected at some point, but if not, hopefully this post will be of some value to someone else who finds him or herself in the same situation...</p>
<p><strong>See Also:</strong> </p>
<p><a href="http://stackoverflow.com/questions/1506858/how-to-get-com-server-for-excel-written-in-vb-net-installed-and-registered-in-aut/1506932#1506932">How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list?</a></p>
<p>-- Mike</p>
http://stackoverflow.com/questions/1499698/vsto-merged-cells/1500599#15005990Answer by Mike Rosenblum for VSTO merged cellsMike Rosenblum2009-09-30T20:53:34Z2009-09-30T22:51:42Z<p>The shortest route here is to make use of the Boolean <code>Range.MergeCells</code> property.</p>
<p>Assuming that your cell reference were named <code>myCell</code>, you could use something like:</p>
<pre><code>if (myCell.MergeCells)
{
// The 'myCell' is part of a merged cell area.
}
Else
{
// The 'myCell' is not part of any merged cell area.
}
</code></pre>
<p>You could also check the <code>Cells.Count</code> on the Range returned by the <code>Range.MergeArea</code> property:</p>
<pre><code>if (myCell.MergeArea.Cells.Count > 1) {...}
</code></pre>
<p>or:</p>
<pre><code>if (myCell.MergeArea.Count > 1) {...}
</code></pre>
<p>The last example works because the Range.Count property always returns the same value as does the Range.Cells.Count, by design.</p>
http://stackoverflow.com/questions/1497766/rebase-a-1-based-array-in-c/1498185#14981850Answer by Mike Rosenblum for Rebase a 1-based array in c#Mike Rosenblum2009-09-30T13:37:27Z2009-09-30T14:04:08Z<p>I agree that working with base-1 arrays from .NET can be a hassle. It is also potentially error-prone, as you have to mentally make a shift each time you use it, as well as correctly remember which situations will be base 1 and which will be base 0.</p>
<p>The most performant approach is to simply make these mental shifts and index appropriately, using base-1 or base-0 as required. </p>
<p>I personally prefer to convert the two dimensional base-1 arrays to two dimensional base-0 arrays. This, unfortunately, requires the performance hit of copying over the array to a new array, as there is no way to re-base an array in place.</p>
<p>Here's an extension method that can do this for the 2D arrays returned by Excel:</p>
<pre><code>public static TResult[,] CloneBase0<TSource, TResult>(
this TSource[,] sourceArray)
{
If (sourceArray == null)
{
throw new ArgumentNullException(
"The 'sourceArray' is null, which is invalid.");
}
int numRows = sourceArray.GetLength(0);
int numColumns = sourceArray.GetLength(1);
TResult[,] resultArray = new TResult[numRows, numColumns];
int lb1 = sourceArray.GetLowerBound(0);
int lb2 = sourceArray.GetLowerBound(1);
for (int r = 0; r < numRows; r++)
{
for (int c = 0; c < numColumns; c++)
{
resultArray[r, c] = sourceArray[lb1 + r, lb2 + c];
}
}
return resultArray;
}
</code></pre>
<p>And then you can use it like this:</p>
<pre><code>object[,] array2DBase1 = (object[,]) MySheet.UsedRange.get_Value(Type.Missing);
object[,] array2DBase0 = array2DBase1.CloneBase0();
for (int row = 0; row < array2DBase0.GetLength(0); row++)
{
for (int column = 0; column < array2DBase0.GetLength(1); column++)
{
// Your code goes here...
}
}
</code></pre>
<p>For massively sized arrays, you might not want to do this, but I find that, in general, it really cleans up your code (and mind-set) to make this conversion, and then always work in base-0.</p>
<p>Hope this helps...</p>
<p>Mike</p>
http://stackoverflow.com/questions/489309/visual-studio-find-doesnt-find-all-possibilities/1495458#14954580Answer by Mike Rosenblum for Visual Studio find doesn't find all possibilitiesMike Rosenblum2009-09-29T23:30:42Z2009-09-29T23:30:42Z<p>In case others run into this problem and cannot solve it, I found an unexpected solution to this problem.</p>
<p>I had to go through a LOT of combinations to figure this out, including, but not limited to, doing a repair on Visual Studio, uninstalling Visual Studio, reinstalling, disabling all add-ins, running in safe-mode, etc. None of this worked, however, including a complete uninstall and re-install of Visual Studio.</p>
<p>The problem in my case was that if the 'Search up' checkbox is checked within 'Find options', searching on the Entire Solution fails. In the most extreme example, if you close all documents and then search on "a" (without the quotes) or check the 'Use Regular Expressions' checkbox/dropdown and search on ".*" (again, without the quotes) you will still get no results.</p>
<p>If you uncheck the 'Search up' checkbox, however, then everything appears to work just fine.</p>
<p>I don't know for how many others this issue will apply, but I'm guessing that others must be getting snagged by this as well.</p>
<p>Two other related threads on this topic:</p>
<ol>
<li><p><a href="http://forums.asp.net/t/1284204.aspx" rel="nofollow">Find and Replace Won't Search Entire Solution (ASP Forums)</a></p></li>
<li><p><a href="https://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=439375&wa=wsignin1.0#tabs" rel="nofollow">VS 2008 Replace in Entire Solution Only Works Once (Microsoft Connect)</a></p></li>
</ol>
<p>I hope this helps somebody...</p>
<p>Mike</p>
http://stackoverflow.com/questions/1479303/vb-net-excel-automation-row-select-event/1480060#14800601Answer by Mike Rosenblum for Vb.Net Excel automation row select eventMike Rosenblum2009-09-26T00:18:01Z2009-09-27T21:48:09Z<p>Hi Melody,</p>
<p>You are looking for the "SelectionChange" event. There are three related events for this: <code>Worksheet.SelectionChange</code>, <code>Workbook.SheetSelectionChange</code>, and <code>Application.SheetSelectionChange</code>. </p>
<p>I think that for your purposes, using <code>Worksheet.SelectionChange</code> is probably what you would want, since you already know which worksheet in which you are interested, but here's an example using all three as an example:</p>
<pre><code>Public Class ExcelEventHandlingClass
Dim WithEvents xlApp As Excel.Application
Dim WithEvents myWorkbook As Excel.Workbook
Dim WithEvents myWorksheet As Excel.Worksheet
Sub New()
xlApp = New Excel.Application
xlApp.Visible = True
myWorkbook = xlApp.Workbooks.Add
myWorksheet = CType(myWorkbook.Worksheets.Add, Excel.Worksheet)
End Sub
Private Sub xlApp_SheetSelectionChange( _
ByVal Sh As Object, _
ByVal Target As Excel.Range) _
Handles xlApp.SheetSelectionChange
MessageBox.Show( _
"xlApp_SheetSelectionChange: " & _
Target.Address(External:=True) & " was selected")
End Sub
Private Sub myWorkbook_SheetSelectionChange( _
ByVal Sh As Object, _
ByVal Target As Excel.Range) _
Handles myWorkbook.SheetSelectionChange
MessageBox.Show( _
"myWorkbook_SheetSelectionChange: " & _
Target.Address(External:=True) & " was selected")
End Sub
Private Sub myWorksheet_SelectionChange( _
ByVal Target As Excel.Range) _
Handles myWorksheet.SelectionChange
MessageBox.Show( _
"myWorksheet_SelectionChange: " & _
Target.Address(External:=True) & " was selected")
End Sub
End Class
</code></pre>
<p>You can run the above as follows:</p>
<pre><code>Dim o As ExcelEventHandlingClass
Private Sub StartExample()
o = New ExcelEventHandlingClass
End Sub
</code></pre>
<p>In this example, if you change the selection on the active worksheet, then all three event handlers fire and you get 3 message boxes. It's a bit annoying, lol, but it proves the point.</p>
<p>Of course you don't have to use <code>WithEvents</code> to hook up your event handlers, you could use AddHandler instead:</p>
<pre><code>AddHandler xlApp.SheetSelectionChange, AddressOf xlApp_SheetSelectionChange
AddHandler myWorkbook.SheetSelectionChange, AddressOf myWorkbook_SheetSelectionChange
AddHandler myWorksheet.SelectionChange, AddressOf myWorksheet_SelectionChange
</code></pre>
<p>Once your handler has been called, it can extract values using automation. You could use the <code>Range.Value</code> property to get the values from a single cell, or return a 2 dimensional range of values from a multi-cell range. Of course you could just run SQL again, once you know which Row(s) you want, based on the selection, but I just thought I'd point out that you can extract the cell values directly.</p>
<p>Hope this helps!</p>
<p>Mike</p>
<p><strong>Edit: Update to Melody's Reply</strong></p>
<blockquote>
<p>"Thank you so much for helping, Mike!"</p>
</blockquote>
<p>No problem. :-)</p>
<blockquote>
<p>"I need to get into the nitty-gritty
of the Target.Address(External:=True)
bit. I assume the target contains info
on what was selected? Can you provide
more info? Does it encapsulate a row
number or numbers of the rows
selected? Does it contain an index or
item property that can be used to get
at the column values? Does the
External=True argument just say this
is coming from non-managed code, or is
my assumption incorrect?"</p>
</blockquote>
<p>That was just an example to show how to report the address of the Range that was selected. Let's look at the method signature for the Worksheet.SelectionChange event handler:</p>
<pre><code>Private Sub myWorksheet_SelectionChange( _
ByVal Target As Excel.Range) _
Handles myWorksheet.SelectionChange
' Your code goes here...
End Sub
</code></pre>
<p>The event has one argument, which is the <code>Target As Excel.Range</code> argument. (The <code>Application.SheetSelectionChange</code> and <code>Workbook.SheetSelectionChange</code> events have a second argument stating on which worksheet the selection change occurred, but in the case of the <code>Worksheet.Selection</code> change event we already know on which worksheet the selection change occurred, so the parameter is omitted.)</p>
<p>The key is that you can make use of the <code>Target As Excel.Range</code> argument to determine what you want. To get the local address, which includes the Range address, but not the worksheet address (E.g. "A1:C3"):</p>
<pre><code>Dim localAddress As String = Target.Address
</code></pre>
<p>To get the full path address (e.g. "[Book1.xls]Sheet1!A1:C3"):</p>
<pre><code>Dim localAddress As String = Target.Address(External:=True)
</code></pre>
<p>To get the number of rows selected:</p>
<pre><code>Dim numRows As Integer = Target.Rows.Count
</code></pre>
<p>To get the Row Index on the worksheet (remember: Excel workshets use Base 1 addressing!) for the top row of the range:</p>
<pre><code>Dim topRowIndex As Integer = Target.Row
</code></pre>
<p>To get the row index for the last row:</p>
<pre><code>Dim lastRowIndex As Integer = Target.Rows(Target.Rows.Count).Row
</code></pre>
<p>These are just some examples. You'll have to make use of the Excel VBA help files (or Google) to get more information on the members of the Range class.</p>
<blockquote>
<p>Due to the holiday I may not be able
to respond to you right away, but I am
grateful for the help.</p>
</blockquote>
<p>Slacker. Just kidding, have a great weekend. :-)</p>
http://stackoverflow.com/questions/1474205/accessing-a-vsto-application-addin-types-from-vba-excel/1474670#14746701Answer by Mike Rosenblum for Accessing a VSTO application-addin types from VBA (Excel)Mike Rosenblum2009-09-24T23:17:22Z2009-09-24T23:17:22Z<p>VSTO is not a DLL that can generally be called from other DLLs. VSTO is basically COM-exposed .NET code operating from within a wrapper operating from within a separate AppDomain. Although your VSTO add-in is technically a DLL that is being loaded into Excel, it operates more like a top-level EXE rather than as a DLL library exposed to other callers.</p>
<p>Personally, I would create a standard .NET assembly -- that is, avoid using VSTO for this -- and expose it to COM using the correct attributes. The process is well explained here: <a href="http://www.15seconds.com/issue/060309.htm" rel="nofollow">COM Interop Exposed - Part 2</a>, under the section titled "Exposing .NET Events to COM".</p>
<p>If you really insist on enabling VBA to be able to call VSTO, then you'll have to operate via the <code>Office.COMAddIn.Object</code> property and <code>RequestComAddInAutomationService</code>. The process is somewhat involved and is discussed in detail in the article <a href="http://blogs.msdn.com/andreww/archive/2007/01/15/vsto-add-ins-comaddins-and-requestcomaddinautomationservice.aspx" rel="nofollow">VSTO Add-ins, COMAddIns and RequestComAddInAutomationService</a> by Andrew Whitechapel.</p>
<p>I hope this helps!</p>
<p>Mike</p>
http://stackoverflow.com/questions/1473520/how-to-call-a-c-dll-from-unmanaged-c-using-idispatch/1473817#14738170Answer by Mike Rosenblum for how to call a C# dll from unmanaged c++ using IDispatch?Mike Rosenblum2009-09-24T19:55:00Z2009-09-24T20:01:49Z<p>I'm not a C++ coder, so I can't comment on that part, but to answer it from the C# side:</p>
<blockquote>
<p>"I'm I doing something wrong in the
way in which I declare my C# dll that
is causing me problems in excel 2003?"</p>
</blockquote>
<p>No, your attribute usage looks exactly correct. Well done.</p>
<blockquote>
<p>"Just as it is now, can my C# dll be
considered an ActiveX object?"</p>
</blockquote>
<p>By compiling with the attributes you show and then registering via RegAsm, you have created and properly exposed your assembly to COM, which is what you want. (The term "ActiveX" is usually used in reference to COM <em>controls</em>, and your class is not a control.)</p>
<blockquote>
<p>"How can I call my C# dll in another
way from c++? like using IDIspatch for
example."</p>
</blockquote>
<p>You are using the <code>[InterfaceType(ComInterfaceType.InterfaceIsDual)]</code> attribute, which means that the interface is exposed to both early binding and late binding via IDispatch.</p>
<p>In short, I don't know what's wrong here, so I would try dequadin's idea to check that the .NET Framework version being loaded is at or above the framework on which you are building.</p>
<p>If that isn't it, the only other thing I can think of is the fact that you are getting a straight crash, without a recoverable error, suggests to me that there could be some sort of mis-alignment between the registered interface vs. the interface on which the caller was compiled. This can happen because the GUID does not change if you change the interface -- you have explicitly set the GUID via an attribute -- so if the interface changes at all without everything being re-built and re-registered from bottom-to-top, all hell breaks loose. Therefore, if you changed your interface in any way, then you need to re-build the C# assembly, re-register with RegAsm, and then re-compile your C++ add-in that is referencing it.</p>
<p>This is just my best guess though. And does not explain the Excel 2003 vs. 2007 issue if you are using the <em>same exact</em> assembly for each. In short, it's hard to know what's wrong because your C# code looks 100% clean.</p>
<p>-- Mike</p>
http://stackoverflow.com/questions/1362903/exception-in-excel-2007-operation-on-vista/1363317#13633170Answer by Mike Rosenblum for Exception in Excel 2007 operation on VistaMike Rosenblum2009-09-01T16:04:52Z2009-09-01T18:30:10Z<p>Hi Amit,</p>
<p>It is difficult to know for sure what could be causing this. So, first a few questions, which you can reply to or clarify by editing your original question, above.</p>
<p>(1) When you say that you have referenced "Interop.Microsoft.Office.Interop.Excel.dll", I assume that you mean <code>Microsoft.Office.Interop.Excel.dll</code>?</p>
<p>Also, if you check the properties for this reference does it show that it's location is in the GAC? You can check this by going into the Solution Explorer, expanding the Project, expanding the References, right clicking on the <code>Microsoft.Office.Interop.Excel</code> reference and then checking the <code>Path</code> property. If it is in the GAC, the <code>Path</code> property should begin with "C:\Windows\Assembly\GAC...".</p>
<p>(2) It also appears that you have a using statement that defines <code>InteropExcel</code> somewhere? Something like this:</p>
<pre><code>using InteropExcel = Microsoft.Office.Interop.Excel;
</code></pre>
<p>Is this correct, or is the <code>InteropExcel</code> a separate reference?</p>
<p>(3) When you say that you are moving your exe, are you moving the exe only, or the entire folder that holds the exe and the associated files? A .NET assembly is not self contained, it needs the references, config files, and/or other files to be within the same folder as the exe, or sometimes within a subfolder of the same folder that holds the exe. Make sure that you move everything together.</p>
<p>(4) You should run your code in debug mode, hosted from within the Visual Studio IDE, so that you can know exactly which line is throwing an exception. My guess is that your first line is returning <code>null</code>:</p>
<pre><code>appExcel = new InteropExcel.ApplicationClass();
</code></pre>
<p>And then I think your next line is throwing a <code>NullReferenceException</code>, because your 'appExcel' reference is null:</p>
<pre><code>oWorkbook = (InteropExcel.Workbook)appExcel.Workbooks.Add(true);
</code></pre>
<p>(Hmmm... actually, the more I think about this, the less this makes sense. Not tested, but I would not expect that a call to <code>appExcel = new InteropExcel.ApplicationClass()</code> would quietly return <code>null</code>. I would expect it to either correctly return an application object or throw an exception, but not quietly fail by returning <code>null</code>. But maybe. If not, then I think your exception might be occurring in some code <em>outside</em> of the code you show. So you really need to run this within the Visual Studio IDE so that you can know which line is failing.)</p>
<p>(5) Additionally, your call to the <code>Workbooks.Add</code> method is not correct. The <code>Template</code> parameter is used to determine which workbook, if any, shall act as the template for the new workbook. In general, the argument passed in should be <code>Type.Missing</code> in order to omit this parameter; this will allow a new workbook to be created based on a default, blank workbook. If you do pass in an argument, it can either be a string holding a full path to the workbook you wish to act as the template for the new workbook, or an <code>Excel.XlWBATemplate</code> constant such as <code>Excel.XlWBATemplate.xlWBATChart</code> or <code>Excel.XlWBATemplate.xlWBATWorksheet</code> to determine the kind of workbook to be created. Again, in general, this parameter should be omitted by passing in <code>Type.Missing</code>. (For more on this, see help on the <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel.workbooks.add.aspx" rel="nofollow">Workbooks.Add Method</a>.)</p>
<p>Therefore, I suggest that you change your line from:</p>
<pre><code>oWorkbook = (InteropExcel.Workbook)appExcel.Workbooks.Add(true);
</code></pre>
<p>to </p>
<pre><code>oWorkbook = (InteropExcel.Workbook)appExcel.Workbooks.Add(Type.Missing);
</code></pre>
<p>(6) In general you should be making use of <code>Application</code> and not the <code>ApplicationClass</code>. I know that this seems odd because <code>Excel.Application</code> is an interface, and creating a <code>new</code> interface seems paradoxical, but this is how it should be done when automating MS Office programs. (For more on this, see <a href="http://blogs.msdn.com/ptorr/archive/2004/02/05/67872.aspx" rel="nofollow">Don't use ApplicationClass (unless you have to)</a> and <a href="http://stackoverflow.com/questions/1051464/excel-interop-worksheet-or-worksheet">Excel interop: _Worksheet or Worksheet?</a>.)</p>
<p>Therefore, your lines:</p>
<pre><code>InteropExcel.ApplicationClass appExcel = null;
appExcel = new InteropExcel.ApplicationClass();
</code></pre>
<p>should instead be:</p>
<pre><code>InteropExcel.Application appExcel = null;
appExcel = new InteropExcel.Application();
</code></pre>
<p>I don't know which of these issues is causing your problem, probably a few of them are in play here, but all of them should be checked and/or corrected. Hopefully one of these will correct your problem.</p>
<p>If none of these fixes it, you should post back with some more information on all of these items that I have highlighted, and/or include anything else you may have figured out in the mean time.</p>
<p>I've got my fingers crossed for you...</p>
<p>Mike</p>
http://stackoverflow.com/questions/1357064/retrieving-the-version-of-the-excel-library-programmatically/1357530#13575302Answer by Mike Rosenblum for Retrieving the Version of the Excel Library ProgrammaticallyMike Rosenblum2009-08-31T13:43:16Z2009-09-01T13:22:32Z<p>The short answer is this: you do not need to know which PIA version is loaded to solve your problem. What you want to know is which version of Excel is actually running. Although the running Excel version and the PIA version are <em>usually</em> the same, they do not have to be, and, in this case, it is the Excel version that you care about, not the PIA version.</p>
<p>Determining which Excel version is running is not hard, but it is not quite as easy as it should be because the <code>Excel.Application.Version</code> property can return strings such as "11.0" or "9.0a" or the like, so one cannot necessarily directly parse it into an integer value. You can rely on the fact that everything to the left of the decimal point (".") is the version number, however, so the following code works for all versions:</p>
<pre><code>Excel.Application excelApp = new Excel.Application();
string versionName = excelApp.Version;
int length = versionName.IndexOf('.');
versionName = versionName.Substring(0, length);
// int.parse needs to be done using US Culture.
int versionNumber = int.Parse(versionName, CultureInfo.GetCultureInfo("en-US"));
if (versionNumber >= 12)
{
// Excel 2007 or above.
}
else
{
// Excel 2003 or below.
}
</code></pre>
<p>As for the PIA vs. Excel object model issue, which Primary Interop Assembly (PIA) your assembly references when developing versus which PIA is actually loaded at runtime on the target machine can be different. For example, if you reference the Excel 2002 PIAs and the target machine is using Excel 2007, then (generally) the Excel 2007 PIAs will get loaded. The rule is that the highest-versioned Office PIA available on the target machine gets loaded at runtime.</p>
<p>It gets even more complicated in that it is possible (although, definitely not likely) for the target machine to have, say, Excel 2007 loaded on the target machine, but the highest-available PIAs be for Excel 2003. In this case, Excel 2007 would load, but your code would be working against the Excel 2003 PIAs. The reverse can occur as well: the Excel 2007 PIAs are available, but the highest actual version installed on the machine is Excel 2003 -- in this case Excel 2003 will load, but your code will be working against the Excel 2007 PIAs.</p>
<p>These scenarios are very unlikely in a standard setup. It is most likely to occur on a developer's machine where either (1) more than one Excel version is present on the machine at the same time, or (2) Excel versions have been added and removed, but the PIAs not removed with it (which, in itself, is also unlikely, as I believe the PIAs are uninstalled automatically, but I could be wrong about this).</p>
<p>For more on this, see Andrew Whitechapel's article <a href="http://blogs.msdn.com/andreww/archive/2007/06/08/why-is-vs-development-not-supported-with-multiple-versions-of-office.aspx" rel="nofollow">Why is VS development not supported with multiple versions of Office?</a></p>
<p>While all these scenarios sound a bit scary, the interfaces in Excel's object model are extremely consistent and therefore are nearly 100% backward-compatible. In general, if you bind to a given Excel PIA version, then your code will run successfully against that version of Excel or higher, pretty much regardless of the scenio involved. There are a few quirks though, as you have discovered, but the key is to know which Excel version is actually running. Knowing which PIA is running is not generally important -- as long as the PIA version you developed against (or higher) is available, then the PIA itself should not cause any issues.</p>
<p><strong>Edit: Follow up to phsr's comment:</strong></p>
<blockquote>
<p>When I am saving the Workbook I
generate, I do need to know what PIA I
am working against, because it will be
saved in that format. If I get the
version of the PIA, I can give the
file name to correct extension ("xls"
vs "xlsx"). Even if a 2007 workbook is
saved as 'xls', it will give the
warning about being a different format
than specified by the file extension.
I would like to hide that warning by
using the correct extension. Your
point is correct in that it really
doesn't matter in the end (the file
will still open) but at in some
instances (like this one) it does.</p>
</blockquote>
<p>I know that it might "feel like" it is the PIA that is the issue, but it is Excel object model that is actually loaded that matters here, not the PIA. In addition, there is a 99.9% chance that the Excel application version number is the SAME as the PIA version. It is extremely rare that they would differ. And where they do differ, it would be the Excel version that matters, not the PIA (so long as the PIA is the same version as the PIA you developed against, or higher).</p>
<p>To try to clarify this, the PIAs only specify the interfaces involved, not the functionality. The <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.tools.excel.workbook.saveas(VS.89).aspx" rel="nofollow">Excel 2003 SaveAs method </a> has exactly the same parameter signature as the <a href="http://msdn.microsoft.com/en-us/library/bb214129.aspx" rel="nofollow">Excel 2007 SaveAs method</a>, so the PIAs do not differ here. How the <code>SaveAs</code> method is executed, however, depends on which version of the Excel object model is <em>actually running</em>.</p>
<p>To fix your problem, I can suggest taking one of two possible courses of action:</p>
<p>(1) Try the code I gave above to determine the Excel version that is running. If you do this and adjust your code accordingly it will work, I promise. If it fails, show your code and I'm sure we can get it to work.</p>
<p>(2) Don't specify the extension in the workbook name that you give it. Let the Excel application add the default extension for you. You are correct in that if you specify a ".xls" extension when saving in Excel 2007, it will respect that extension, but not the workbook version. Easiest here, however, is to simply omit the extension when saving your workbook and the Excel application will automatically append ".xls" or ".xlsx" to the workbook name, depending on which Excel version is currently running:</p>
<pre><code>Excel.Application excelApp = new Excel.Application();
Excel.Workbook workbook = excelApp.Workbooks.Add(Type.Missing);
workbook.SaveAs(
"MyWorkbook", Type.Missing, Type.Missing, Type.Missing, Type.Missing, Type.Missing,
Excel.XlSaveAsAccessMode.xlNoChange, Type.Missing, Type.Missing, Type.Missing,
Type.Missing, Type.Missing);
</code></pre>
<p>The result of the above is a workbook named either "MyWorkbook.xls" or "MyWorkbook.xlsx", depending on which version of Excel is running. In short, let Excel do the work for you so that you don't have to worry about it.</p>
http://stackoverflow.com/questions/1345396/net-c-excel-colomn-autofit/1348110#13481100Answer by Mike Rosenblum for .net c# excel colomn autoFit Mike Rosenblum2009-08-28T16:29:11Z2009-08-28T16:29:11Z<p>If you wish to use Selection and have IntelliSense and early binding, you need to cast the Selection object to a Range first:</p>
<pre><code> Excel.Range selectedRange = (Excel.Range)myExcelApp.Selection;
selectedRange.Columns.AutoFit();
foreach (Excel.Range column in selectedRange.Columns)
{
column.ColumnWidth = (double)column.ColumnWidth + 5;
}
</code></pre>
<p>-- Mike</p>
http://stackoverflow.com/questions/1340176/how-to-use-getactiveobjectexcel-application/1341587#13415870Answer by Mike Rosenblum for How to use getActiveObject("Excel.Application")Mike Rosenblum2009-08-27T14:46:15Z2009-08-27T14:46:15Z<p>In order to be able to refer to the Excel object model as "Excel", then you can create an alias via a <code>using</code> statement at the top of your namespace (or document) as follows:</p>
<pre><code>using Excel = Microsoft.Office.Interop.Excel;
</code></pre>
<p>Thereafter, you can refer to <code>Excel.Application</code> instead of the long-winded <code>Microsoft.Office.Interop.Excel.Application</code>.</p>
<p>As for why your call to Marshal.GetActiveObject is failing, I can't say for sure. A couple of thoughts:</p>
<p>(1) Are you certain that there is a running instance of Excel already present? If not, then create a new Excel application:</p>
<pre><code>Excel.Application xlApp = new Excel.Application();
</code></pre>
<p>(2) If there definitely is an Excel application already running, then it is possible that the Excel instance has not yet been added to the Running Objects Table (ROT) if the Excel Application has never lost focus. See: <a href="http://support.microsoft.com/default.aspx/kb/316125" rel="nofollow">Visual C# .NET Error Attaching to Running Instance of Office Application</a> for more on this. I believe that the Marshal.GetActiveObject method should throw an exception in this case -- not quietly return null -- but this still seems potentially relevant.</p>
<p>I hope this helps...</p>
<p>Mike</p>
http://stackoverflow.com/questions/1333772/adding-hyperlinks-in-excel2007-in-c-within-excel-it-self/1336296#13362960Answer by Mike Rosenblum for Adding hyperlinks in Excel[2007] in C# - Within Excel it self Mike Rosenblum2009-08-26T17:21:07Z2009-08-26T17:21:07Z<p>What you want to use here is the <a href="http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel.hyperlinks.add(office.11).aspx" rel="nofollow">Hyperlinks.Add</a> method.</p>
<p>You can call it with code that looks something like this:</p>
<pre><code>Excel.Worksheet worksheet = (Excel.Worksheet)workbook.Worksheets[1];
Excel.Range rangeToHoldHyperlink = worksheet.get_Range("A1", Type.Missing);
string hyperlinkTargetAddress = "Sheet2!A1";
worksheet.Hyperlinks.Add(
rangeToHoldHyperlink,
string.Empty,
hyperlinkTargetAddress,
"Screen Tip Text",
"Hyperlink Title");
</code></pre>
<p>Here is a full automation example that you can test:</p>
<pre><code>void AutomateExcel()
{
Excel.Application excelApp = new Excel.Application();
excelApp.Visible = true;
Excel.Workbook workbook = excelApp.Workbooks.Add(Type.Missing);
workbook.Worksheets.Add(Type.Missing, Type.Missing, Type.Missing, Type.Missing);
workbook.Worksheets.Add(Type.Missing, Type.Missing, Type.Missing, Type.Missing);
Excel.Worksheet worksheet = (Excel.Worksheet)workbook.Worksheets[1];
Excel.Range rangeToHoldHyperlink = worksheet.get_Range("A1", Type.Missing);
string hyperlinkTargetAddress = "Sheet2!A1";
worksheet.Hyperlinks.Add(
rangeToHoldHyperlink,
string.Empty,
hyperlinkTargetAddress,
"Screen Tip Text",
"Hyperlink Title");
MessageBox.Show("Ready to clean up?");
// Cleanup:
GC.Collect();
GC.WaitForPendingFinalizers();
GC.Collect();
GC.WaitForPendingFinalizers();
Marshal.FinalReleaseComObject(range);
Marshal.FinalReleaseComObject(worksheet);
workbook.Close(false, Type.Missing, Type.Missing);
Marshal.FinalReleaseComObject(workbook);
excelApp.Quit();
Marshal.FinalReleaseComObject(excelApp);
}
</code></pre>
<p>Hope this helps!</p>
<p>Mike</p>
http://stackoverflow.com/questions/1318543/should-an-event-that-has-no-arguments-define-its-own-custom-eventargs-or-simply-u5Should an Event that has no arguments define its own custom EventArgs or simply use System.EventArgs instead?Mike Rosenblum2009-08-23T13:27:07Z2009-08-23T15:38:18Z
<p>I have an event that is currently defined with no event arguments. That is, the EventArgs it sends is EventArgs.Empty.</p>
<p>In this case, it is simplest to declare my Event handler as:</p>
<pre><code>EventHandler<object, System.EventArgs> MyCustomEvent;
</code></pre>
<p>I do not plan on adding any event arguments to this event, but it is possible that any code could need to change in the future.</p>
<p>Therefore, I am leaning towards having all my events always create an empty event args type that inheretis from <code>System.EventArgs</code>, even if there are no event args currently needed. Something like this:</p>
<pre><code>public class MyCustomEventArgs : EventArgs
{
}
</code></pre>
<p>And then my event definition becomes the following:</p>
<pre><code>EventHandler<object, MyCustomEventArgs> MyCustomEvent;
</code></pre>
<p>So my question is this: is it better to define my own <code>MyCustomEventArgs</code>, even if it does not add anything beyond inheriting from <code>System.EventArgs</code>, so that event arguments could be added in the future more easily? Or is it better to explicitly define my event as returning <code>System.EventArgs</code>, so that it is clearer to the user that there are no extra event args?</p>
<p>I am leaning towards creating custom event arguments for all my events, even if the event arguments are empty. But I was wondering if others thought that making it clearer to the user that the event arguments are empty would be better?</p>
<p>Much thanks in advance,</p>
<p>Mike</p>
http://stackoverflow.com/questions/1308165/call-methods-written-in-c-in-excel-2007-from-cell-formulas/1308510#13085101Answer by Mike Rosenblum for Call methods written in C# in Excel 2007 from cell formulasMike Rosenblum2009-08-20T20:09:12Z2009-08-21T12:02:51Z<p>If these are your four requirements -- (1) Excel 2007, (2) code in C# DLL, (3) call from Excel cell as UDF, (4) native integration -- then, yes, this can be done, and pretty easily. One of the best tutorials on how to do this is Eric Carter's article <a href="http://blogs.msdn.com/eric_carter/archive/2004/12/01/273127.aspx" rel="nofollow">Writing user defined functions for Excel in .NET</a>.</p>
<p>If you additionally want your code be hosted via VSTO, then I am virtually certain that you are required to use a VBA wrapper in this case. See Paul Stubbs' article <a href="http://blogs.msdn.com/pstubbs/archive/2004/12/31/344964.aspx" rel="nofollow">How to create Excel UDFs in VSTO managed code</a> where he uses a VBA add-in to expose VBA UDFs, which in turn call his Managed UDFs written in VSTO.</p>
<p>To be honest though, for Excel UDFs, I would simply avoid the use of VSTO. VSTO is a great designer for managed COM add-ins, allowing you to easily add Ribbon controls and the like. But it is of no help for UDFs (and in fact, does not even support it). So my advice is to create a managed automation add-in, as per <a href="http://blogs.msdn.com/eric_carter/archive/2004/12/01/273127.aspx" rel="nofollow">Eric Carter's article</a>, and drop the VSTO requirement.</p>
<p>If you do this, you will have no problems, I promise. :-)</p>
<p>Mike</p>
http://stackoverflow.com/questions/1231140/whats-wrong-with-my-shared-add-in-constructor/1247298#12472981Answer by Mike Rosenblum for What's wrong with my Shared Add-in Constructor?Mike Rosenblum2009-08-07T22:31:00Z2009-08-10T22:18:02Z<p>Hi Pedro,</p>
<blockquote>
<p>How could I find out how many
instances of the COM Object are
loaded? or put into another words
could be possible to have a single
instance of a COM Object?</p>
</blockquote>
<p>Do you mean COM add-in here? You cannot have the same COM add-in loaded into Excel more than once.</p>
<blockquote>
<p>Now I need to find a way for the
invocation part from VBA of the
Add-in, meaning how to connect the
Add-in instance to a reference in VBA
and fro there call all the methods
exposed throught the Interface of the
COM Object????</p>
</blockquote>
<p>VBA is all late-bound, it is not pre-compiled into a DLL like a VB6 DLL or a .NET assembly. Therefore, all of your VBA calls will have to be late bound as well. Easiest is to call <code>Excel.Appliction.Run("NameOfYourVbaMacro")</code> to call any macro stored within a standard module within your workbook. (You can access your workbook by name using <code>Excel.Application.Workbooks["NameOfYourAddin.xla"]</code>. You don't need to treat it as an add-in specifically, other than when you force it to load.) You can also use reflection code to access the workbook and worksheet members, if you have code behind either the <code>ThisWorkbook</code> class module or any of the <code>Worksheet</code> class modules.</p>
<blockquote>
<p>I thought that once Excel loads the
Add-in it should be available to the
VBE Code and i could write something
like</p>
<p>Set myAddin =
Application.COMAddins.Item("Trading").Object</p>
</blockquote>
<p>So, if I understand correctly, you want not only to have your C# managed COM add-in call VBA code (as discussed above), but now you also want to have VBA code to be able to call our C# managed COM add-in? I think this is a ton of complexity that probably needs some re-thinking... but it can be done.</p>
<p>Exposing your managed COM add-in to a COM caller via the <code>ComAddin.Object</code> property is tricky when done from C#, but doable. See the following discussion: </p>
<p><a href="http://www.xtremevbtalk.com/showthread.php?t=295196" rel="nofollow">Calling Managed Add-In method from Automation client</a>.</p>
<p>I hope this helps get you going...</p>
<p>Mike</p>
<p><strong>Edit: Response to Pedro's Reply</strong></p>
<p>Pedro,</p>
<blockquote>
<p>You will noticed this looks alittle
different from you posted a while
ago...</p>
</blockquote>
<p>Yes, your code is different and is why it does not work!</p>
<p>At a minimum, your last line looks incorrect:</p>
<pre><code>VBA.Interaction.CallByName(addIn, "Object", VBA.CallType.Let, this);
</code></pre>
<p>Instead, your code should be passing in your class to the 'addInInst':</p>
<pre><code>VBA.Interaction.CallByName(addInInst, "Object", VBA.CallType.Let, this);
</code></pre>
<p>And I'm not sure what you are trying to do by this line:</p>
<pre><code>Office.COMAddIn addIn = this.excelApp.COMAddIns.Item(ref addInInst);
</code></pre>
<p>That line looks like it should throw an exception. I am very surprised that it does not. But code similar to that -- where you pass in the progId for the COM add-in you wish to access -- is typically used by an external caller that wishes to access your COM Add-in via the .Object property. This is not code that should be used from <em>within</em> the add-in itself.</p>
<blockquote>
<p>Because addInInst is not pass as a
Office.COMAddin but a instance of my
class, so trying to assign to the
Object Property is incorrect since it
doesn't exists in that class</p>
</blockquote>
<p>I don't understand what you are trying to do here. I don't know if you can pass in any other object other than the instance of the class that implements IDTExtensibility2. At a minimum, whatever class you do pass back <em>must</em> be be a COM visible class by using the correct class and interface attributes. But I think that it is far easier to stick to the standard practice of passing in the class that implements IDTExtensibility2 from within the OnConnection method. That is, pass in your 'this' object reference.</p>
<p>If you want to try fancy things that go beyond the standard approach, that's ok, but I would get a simple example working first. Try to replicate the code that I show in the example <a href="http://www.xtremevbtalk.com/showthread.php?t=295196" rel="nofollow">Calling Managed Add-In method from Automation client</a>. Once you have that working, you can try to move onto more sophisticated operations. But once you have the simple version working, I think you'll find that this is all that you need.</p>
<p>I hope this helps Pedro,</p>
<p>Mike</p>
http://stackoverflow.com/questions/1240851/comparing-hashes-when-entering-excel-password/1247228#12472281Answer by Mike Rosenblum for Comparing hashes when entering Excel passwordMike Rosenblum2009-08-07T22:02:33Z2009-08-07T22:02:33Z<p>Your program will have to provide the password, because the user doesn't know what it is!</p>
<p>Fortunately, the <code>Excel.Workbooks.Open</code> method takes an argument permitting you to specify the password required. So your code could get the hashed password from the registry (or from wherever you are storing it) and then open the wokrbook via code:</p>
<pre><code>string fileName = @"C:\...";
string password = GetHashedPasswordFromRegistry();
Excel.Workbook workbook = excelApp.Workbooks.Open(
fileName, Type.Missing, Type.Missing,Type.Missing,
password, Type.Missing, Type.Missing, Type.Missing,
Type.Missing, Type.Missing, Type.Missing, Type.Missing,
Type.Missing, Type.Missing, Type.Missing);
</code></pre>
<p>I think this should do what you're looking for? Let us know how it goes...</p>
<p>Mike</p>
http://stackoverflow.com/questions/1046016/event-signature-in-net-using-a-strong-typed-sender16Event Signature in .NET -- Using a Strong Typed 'Sender'?Mike Rosenblum2009-06-25T20:21:02Z2009-07-25T17:44:00Z
<p>I fully realize that what I am proposing does not follow the .NET guidelines, and, therefore, is probably a poor idea for this reason alone. However, I would like to consider this from two possible perspectives:</p>
<p>(1) Should I consider using this for my own development work, which is 100% for internal purposes.</p>
<p>(2) Is this a concept that the framework designers could consider changing or updating?</p>
<p>I am thinking about using an event signature that utilizes a strong typed 'sender', instead of typing it as 'object', which is the current .NET design pattern. That is, instead of using a standard event signature that looks like this:</p>
<pre><code>class Publisher
{
public event EventHandler<PublisherEventArgs> SomeEvent;
}
</code></pre>
<p>I am considering using an event signature that utilizes a strong-typed 'sender' parameter, as follows:</p>
<p>First, define a "StrongTypedEventHandler":</p>
<pre><code>[SerializableAttribute]
public delegate void StrongTypedEventHandler<TSender, TEventArgs>(
TSender sender,
TEventArgs e
)
where TEventArgs : EventArgs;
</code></pre>
<p>This is not all that different from an Action<TSender, TEventArgs>, but by making use of the <code>StrongTypedEventHandler</code>, we enforce that the TEventArgs derives from <code>System.EventArgs</code>.</p>
<p>Next, as an example, we can make use of the StrongTypedEventHandler in a publishing class as follows:</p>
<pre><code>class Publisher
{
public event StrongTypedEventHandler<Publisher, PublisherEventArgs> SomeEvent;
protected void OnSomeEvent()
{
if (SomeEvent != null)
{
SomeEvent(this, new PublisherEventArgs(...));
}
}
}
</code></pre>
<p>The above arrangement would enable subscribers to utilize a strong-typed event handler that did not require casting:</p>
<pre><code>class Subscriber
{
void SomeEventHandler(Publisher sender, PublisherEventArgs e)
{
if (sender.Name == "John Smith")
{
// ...
}
}
}
</code></pre>
<p>I do fully realize that this verges on blasphemy; however, keep in mind that contravariance would enable a subscriber to use a traditional event handling signature if desired:</p>
<pre><code>class Subscriber
{
void SomeEventHandler(object sender, PublisherEventArgs e)
{
if (((Publisher)sender).Name == "John Smith")
{
// ...
}
}
}
</code></pre>
<p>That is, if an event handler needed to subscribe to events from disparate (or perhaps unknown) object types, the handler could type the 'sender' parameter as 'object' in order to handle the full breadth of potential sender objects.</p>
<p>Other than breaking convention (which is something that I do not take lightly, believe me) I cannot think of any downsides to this.</p>
<p>There may be some CLS compliance issues here. This does run in Visual Basic .NET 2008 100% fine (I've tested), but I believe that the older versions of Visual Basic .NET through 2005 do not have delegate covariance and contravariance. <em>[Edit: I have since tested this, and it is confirmed: VB.NET 2005 and below cannot handle this, but VB.NET 2008 is 100% fine. See "Edit #2", below.]</em> There may be other .NET languages that also have a problem with this, I can't be sure.</p>
<p>But I do not see myself developing for any language other than C# or Visual Basic .NET, and I do not mind restricting it to C# and VB.NET for .NET Framework 3.0 and above. (I could not imagine going back to 2.0 at this point, to be honest.)</p>
<p>Can anyone else think of a problem with this? Or does this simply break with convention so much that it makes people's stomachs turn?</p>
<p>Here are some related links that I've found:</p>
<p>(1) <a href="http://msdn.microsoft.com/en-us/library/ms229011.aspx" rel="nofollow">Event Design Guidelines [MSDN 3.5]</a></p>
<p>(2) <a href="http://stackoverflow.com/questions/809609/c-simple-event-raising-using-sender-vs-custom-eventargs" rel="nofollow">C# simple Event Raising - using “sender” vs. custom EventArgs [StackOverflow 2009]</a></p>
<p>(3) <a href="http://stackoverflow.com/questions/247241/event-signature-pattern-in-net" rel="nofollow">Event signature pattern in .net [StackOverflow 2008]</a></p>
<p>I am interested in anyone's and everyone's opinion on this...</p>
<p>Thanks in advance,</p>
<p>Mike</p>
<p><strong>Edit #1:</strong> This is in response to <a href="http://stackoverflow.com/questions/1046016/event-signature-in-net-using-a-strong-typed-sender/1046104#1046104" rel="nofollow"> Tommy Carlier's post </a>:</p>
<p>Here's a full working example that shows that both strong-typed event handlers and the current standard event handlers that use a 'object sender' parameter can co-exist with this approach. You can copy-paste in the code and give it a run:</p>
<pre><code>namespace csScrap.GenericEventHandling
{
class PublisherEventArgs : EventArgs
{
// ...
}
[SerializableAttribute]
public delegate void StrongTypedEventHandler<TSender, TEventArgs>(
TSender sender,
TEventArgs e
)
where TEventArgs : EventArgs;
class Publisher
{
public event StrongTypedEventHandler<Publisher, PublisherEventArgs> SomeEvent;
public void OnSomeEvent()
{
if (SomeEvent != null)
{
SomeEvent(this, new PublisherEventArgs());
}
}
}
class StrongTypedSubscriber
{
public void SomeEventHandler(Publisher sender, PublisherEventArgs e)
{
MessageBox.Show("StrongTypedSubscriber.SomeEventHandler called.");
}
}
class TraditionalSubscriber
{
public void SomeEventHandler(object sender, PublisherEventArgs e)
{
MessageBox.Show("TraditionalSubscriber.SomeEventHandler called.");
}
}
class Tester
{
public static void Main()
{
Publisher publisher = new Publisher();
StrongTypedSubscriber strongTypedSubscriber = new StrongTypedSubscriber();
TraditionalSubscriber traditionalSubscriber = new TraditionalSubscriber();
publisher.SomeEvent += strongTypedSubscriber.SomeEventHandler;
publisher.SomeEvent += traditionalSubscriber.SomeEventHandler;
publisher.OnSomeEvent();
}
}
}
</code></pre>
<p><strong>Edit #2:</strong> This is in response to <a href="http://stackoverflow.com/questions/1046016/event-signature-in-net-using-a-strong-typed-sender/1046041#1046041" rel="nofollow">Andrew Hare's statement</a> regarding covariance and contravariance and how it applies here. Delegates in the C# language have had covariance and contravariance for so long that it just feels "intrinsic", but it's not. It might even be something that's enabled in the BCL, I don't know, but Visual Basic .NET did not get covariance and contravariance capability for its delegates until the .NET Framework 3.0 (VB.NET 2008). And as a result, Visual Basic.NET for .NET 2.0 and below would not be able to utilize this approach.</p>
<p>For example, the above example can be translated into VB.NET as follows:</p>
<pre><code>Namespace GenericEventHandling
Class PublisherEventArgs
Inherits EventArgs
' ...
' ...
End Class
<SerializableAttribute()> _
Public Delegate Sub StrongTypedEventHandler(Of TSender, TEventArgs As EventArgs) _
(ByVal sender As TSender, ByVal e As TEventArgs)
Class Publisher
Public Event SomeEvent As StrongTypedEventHandler(Of Publisher, PublisherEventArgs)
Public Sub OnSomeEvent()
RaiseEvent SomeEvent(Me, New PublisherEventArgs)
End Sub
End Class
Class StrongTypedSubscriber
Public Sub SomeEventHandler(ByVal sender As Publisher, ByVal e As PublisherEventArgs)
MessageBox.Show("StrongTypedSubscriber.SomeEventHandler called.")
End Sub
End Class
Class TraditionalSubscriber
Public Sub SomeEventHandler(ByVal sender As Object, ByVal e As PublisherEventArgs)
MessageBox.Show("TraditionalSubscriber.SomeEventHandler called.")
End Sub
End Class
Class Tester
Public Shared Sub Main()
Dim publisher As Publisher = New Publisher
Dim strongTypedSubscriber As StrongTypedSubscriber = New StrongTypedSubscriber
Dim traditionalSubscriber As TraditionalSubscriber = New TraditionalSubscriber
AddHandler publisher.SomeEvent, AddressOf strongTypedSubscriber.SomeEventHandler
AddHandler publisher.SomeEvent, AddressOf traditionalSubscriber.SomeEventHandler
publisher.OnSomeEvent()
End Sub
End Class
End Namespace
</code></pre>
<p>VB.NET 2008 can run it 100% fine. But I've now tested it on VB.NET 2005, just to be sure, and it does not compile, stating:</p>
<blockquote>
<p>Method 'Public Sub
SomeEventHandler(sender As Object, e
As
vbGenericEventHandling.GenericEventHandling.PublisherEventArgs)'
does not have the same signature as
delegate 'Delegate Sub
StrongTypedEventHandler(Of TSender,
TEventArgs As System.EventArgs)(sender
As Publisher, e As
PublisherEventArgs)'</p>
</blockquote>
<p>Basically, delegates are invariant in VB.NET versions 2005 and below. I actually thought of this idea a couple of years ago, but VB.NET's inability to deal with this bothered me... But I've now moved solidly to C#, and VB.NET can now handle it, so, well, hence this post.</p>
<p><strong>Edit: Update #3</strong></p>
<p>Ok, I have been using this quite successfully for a while now. It really is a nice system. I decided to name my "StrongTypedEventHandler" as "GenericEventHandler", defined as follows:</p>
<pre><code>[SerializableAttribute]
public delegate void GenericEventHandler<TSender, TEventArgs>(
TSender sender,
TEventArgs e
)
where TEventArgs : EventArgs;
</code></pre>
<p>Other than this renaming, I implemented it exactly as discussed above.</p>
<p>It does trip over FxCop rule CA1009, which states:</p>
<blockquote>
<p>"By convention, .NET events have two
parameters that specify the event
sender and event data. Event handler
signatures should follow this form:
void MyEventHandler( object sender,
EventArgs e). The 'sender' parameter
is always of type System.Object, even
if it is possible to employ a more
specific type. The 'e' parameter is
always of type System.EventArgs.
Events that do not provide event data
should use the System.EventHandler
delegate type. Event handlers return
void so that they can send each event
to multiple target methods. Any value
returned by a target would be lost
after the first call."</p>
</blockquote>
<p>Of course, we know all this, and are breaking the rules anyway. (All event handlers can use the standard 'object Sender' in their signature if preferred in any case -- this is a non-breaking change.)</p>
<p>So the use of a <code>SuppressMessageAttribute</code> does the trick:</p>
<pre><code>[SuppressMessage("Microsoft.Design", "CA1009:DeclareEventHandlersCorrectly",
Justification = "Using strong-typed GenericEventHandler<TSender, TEventArgs> event handler pattern.")]
</code></pre>
<p>I hope that this approach becomes the standard at some point in the future. It really works very nicely.</p>
<p>Thanks for all your opinions guys, I really appreciate it...</p>
<p>Mike</p>
http://stackoverflow.com/questions/1111935/c-and-excel-interop/1113744#11137445Answer by Mike Rosenblum for C# and Excel interopMike Rosenblum2009-07-11T13:44:21Z2009-07-11T19:46:49Z<blockquote>
<p>"I thought by using the PIA I wouldn't
have to worry about Excel version
issues. I know there are other users
using Excel 2000, and it works on my
dev machine."</p>
</blockquote>
<p>Almost true, but not quite.</p>
<p>By developing against the PIA for Excel 2002, your program will be compatible for all versions of Excel 2002 (10.0) and above. The failing machine, however, is running with Excel 2000 (9.0), which is a version <em>below</em> the version that you have developed against.</p>
<p>There is no officially supported PIA below Excel 2002, so if you need your program to run on Excel 2000 (9.0) then you will have to create your own custom interop assembly. You can use TlbImp.exe to create an interop assembly for Excel 9.0, as explained in the article <a href="http://www.devcity.net/Articles/163/1/article.aspx" rel="nofollow">Achieving Backward Compatibility with .NET Interop: Excel as Case Study</a>.</p>
<p>If your assembly is strong-named, then you need to create a strong-named interop assembly. This can be done by providing the name of your .pfx or .snk file via the /keyfile switch, as demonstrated in the article <a href="http://support.microsoft.com/kb/304295" rel="nofollow">How to create a Primary Interop Assembly (PIA)</a>. That article is also making use of the /primary switch in order to create a "primary interop assembly". Making the interop assembly primary is not really needed in your case, but does not hurt. What the article omits, however, is the use of the /sysarray switch, which you should use.</p>
<p>Making a strong-named interop assembly does have some complexities to consider, however. For some more details, have a read of <a href="http://www.darinhiggins.com/2009/04/14/UsingTLBIMPexeToCreateStrongNamedInteropAssemblies.aspx" rel="nofollow">Using TLBIMP.exe to create Strong Named Interop Assemblies</a>. (Among other things, this article explains the need for the /sysarray switch.)</p>
<p>In short, making a custom interop assembly is very simple if your assembly is not strong named. It is more complicated if your assembly is strong-named and, therefore, you need to create a strong-named interop assembly. But hopefully these articles should get you going.</p>
<p>-- Mike</p>
http://stackoverflow.com/questions/1084668/why-is-the-result-of-a-subtraction-of-an-int16-parameter-from-an-int16-variable-a/1084729#10847292Answer by Mike Rosenblum for Why is the result of a subtraction of an Int16 parameter from an Int16 variable an Int32? Mike Rosenblum2009-07-05T20:05:21Z2009-07-05T23:09:35Z<p>The other answers given within this thread, as well as the discussions given here are instructive:</p>
<p>(1) <a href="http://stackoverflow.com/questions/927391/why-is-a-cast-required-for-byte-subtraction-in-c">Why is a cast required for byte subtraction in C#?</a></p>
<p>(2) <a href="http://stackoverflow.com/questions/941584/byte-byte-int-why-c">byte + byte = int… why?</a></p>
<p>(3) <a href="http://stackoverflow.com/questions/927391/why-is-a-cast-required-for-byte-substraction-in-c">Why is a cast required for byte subtraction in C#?</a></p>
<p>But just to throw another wrinkle into it, it can depend on which operators you use. The increment (++) and decrement (--) operators as well as the addition assignment (+=) and subtraction assignment (-=) operators are overloaded for a variety of numeric types, and they perform the extra step of converting the result back to the operand's type when returning the result.</p>
<p>For example, using short:</p>
<pre><code>short s = 0;
s++; // <-- Ok
s += 1; // <-- Ok
s = s + 1; // <-- Compile time error!
s = s + s; // <-- Compile time error!
</code></pre>
<p>Using byte:</p>
<pre><code>byte b = 0;
b++; // <-- Ok
b += 1; // <-- Ok
b = b + 1; // <-- Compile time error!
b = b + b; // <-- Compile time error!
</code></pre>
<p>If they didn't do it this way, calls using the increment operator (++) would be impossible and calls to the addition assignment operator would be awkward at best, e.g.:</p>
<pre><code>short s
s += (short)1;
</code></pre>
<p>Anyway, just another aspect to this whole discussion...</p>
http://stackoverflow.com/questions/957575/how-to-easily-create-an-excel-udf-with-vsto-add-in-project/962164#9621643Answer by Mike Rosenblum for How to easily create an Excel UDF with VSTO Add-in projectMike Rosenblum2009-06-07T15:59:31Z2009-07-03T20:38:58Z<p>As far as I know, you cannot directly create UDFs in VSTO. </p>
<p>See Paul Stubbs' article <a href="http://blogs.msdn.com/pstubbs/archive/2004/12/31/344964.aspx" rel="nofollow">How to create Excel UDFs in VSTO managed code</a> where he uses a VBA add-in to expose VBA UDFs, which in turn call his Managed UDFs written in VSTO.</p>
<p>You can use managed code to create UDFs, however, when not using VSTO. See Eric Carter's article <a href="http://blogs.msdn.com/eric_carter/archive/2004/12/01/273127.aspx" rel="nofollow">Writing user defined functions for Excel in .NET</a> on how to do this.</p>
<p>As for VSTO's execution speed, I think you'll find it fine for virtually all tasks. Looping through cells, however, which is already Excel's weak-point, might be painfully slow, depending on what you are doing. Try to execute things in batch, as much as possible. For example, instead of looping through the cells one by one, return a two dimensional array of values from an area, process the array, and then pass it back to the range. </p>
<p>To demonstrate, the following will return a two dimensional array of values from an area, process the values, and then pass the resulting array back to the original area in one shot:</p>
<pre><code>Excel.Range rng = myWorksheet.get_Range("A1:D4", Type.Missing);
//Get a 2D Array of values from the range in one shot:
object[,] myArray = (object[,])rng.get_Value(Type.Missing);
// Process 'myArray' however you want here.
// Note that the Array returned from Excel is base 1, not base 0.
// To be safe, use GetLowerBound() and GetUpperBound:
for (int row = myArray.GetLowerBound(0); row <= myArray.GetUpperBound(0); row++)
{
for (int column = myArray.GetLowerBound(1); column <= myArray.GetUpperBound(1); column++)
{
if (myArray[row, column] is double)
{
myArray[row, column] = (double)myArray[row, column] * 2;
}
}
}
// Pass back the results in one shot:
rng.set_Value(Type.Missing, myArray);
</code></pre>
<p>Hope this helps!</p>
<p>Mike</p>
http://stackoverflow.com/questions/1059951/export-a-c-list-of-lists-to-excel/1060823#10608232Answer by Mike Rosenblum for Export a C# List of Lists to ExcelMike Rosenblum2009-06-29T22:06:52Z2009-07-01T01:28:20Z<p>Strategically, you are doing it correctly. As Joe says, it is massively faster to execute cell value assignments by passing an entire array of values in one shot rather than by looping through the cells one by one.</p>
<p>Excel is COM based and so operates with Excel via the .NET interop. The interop is ignorant of generics, unfortunately, so you cannot pass it a List<T> or the like. A two dimensional array really is the only way to go.</p>
<p>That said, there are a few ways to clean up your code to make it a bit more manageable. Here are some thoughts:</p>
<p>(1) If you are using .NET 3.0, you can use LINQ to shorten your code from:</p>
<pre><code>int numberOfColumns = int.MinValue;
foreach (List<object> outputColumns in outputRows)
{
if (numberOfColumns < outputColumns.Count)
{ numberOfColumns = outputColumns.Count; }
}
</code></pre>
<p>to a single line:</p>
<pre><code>int numberOfColumns = outputRows.Max(list => list.Count);
</code></pre>
<p>(2) Don't use the <code>_Worksheet</code> or <code>_Workbook</code> interfaces. Make use of <code>Worksheet</code> or <code>Workbook</code> instead. See here for a discussion: <a href="http://stackoverflow.com/questions/1051464/excel-interop-worksheet-or-worksheet">Excel interop: _Worksheet or Worksheet?</a>.</p>
<p>(3) Consider making use of the <code>Range.Resize</code> method, which comes through as <code>Range.get_Resize</code> in C#. This is a toss-up though -- I actually like the way you are setting your range size. But it's something that I thought that you might want to know about. For example, your line here:</p>
<pre><code>Excel.Range oRng = oSheet.get_Range("A1", oSheet.Cells[numberOfRows,numberOfColumns]);
</code></pre>
<p>Could be changed to:</p>
<pre><code>Excel.Range oRng =
oSheet.get_Range("A1", Type.Missing)
.get_Resize(numberOfRows, numberOfColumns);
</code></pre>
<p>(4) You do not have to set the <code>Application.UserControl</code> to <code>true</code>. Making Excel visible to the user is enough. The <code>UserControl</code> property is not doing what you think it does. (See the help files <a href="http://msdn.microsoft.com/en-us/library/bb221971.aspx" rel="nofollow">here</a>) If you want to control whether the user can control Excel or not, you should utilze Worksheet protection, or you <em>could</em> set <code>Application.Interactive = false</code> if you want to lock out your users. (Rarely a good idea.) But if you want to allow the user to use Excel, then simply making it visible is enough.</p>
<p>Overall, with these in mind, I think that your code could look something like this:</p>
<pre><code>object oOpt = System.Reflection.Missing.Value; //for optional arguments
Excel.Application oXL = new Excel.Application();
Excel.Workbooks oWBs = oXL.Workbooks;
Excel.Workbook oWB = oWBs.Add(Excel.XlWBATemplate.xlWBATWorksheet);
Excel.Worksheet oSheet = (Excel.Worksheet)oWB.ActiveSheet;
//outputRows is a List<List<object>>
int numberOfRows = outputRows.Count;
int numberOfColumns = outputRows.Max(list => list.Count);
Excel.Range oRng =
oSheet.get_Range("A1", oOpt)
.get_Resize(numberOfRows, numberOfColumns);
object[,] outputArray = new object[numberOfRows, numberOfColumns];
for (int row = 0; row < numberOfRows; row++)
{
for (int col = 0; col < outputRows[row].Count; col++)
{
outputArray[row, col] = outputRows[row][col];
}
}
oRng.set_Value(oOpt, outputArray);
oXL.Visible = true;
</code></pre>
<p>Hope this helps...</p>
<p>Mike</p>
http://stackoverflow.com/questions/1888301/excel-replace-value-without-losing-formatting/1890973#1890973Comment by Mike Rosenblum on Excel replace value without losing formattingMike Rosenblum2009-12-13T22:18:10Z2009-12-13T22:18:10Z@Ben: regarding your reply "I haven't used C# .NET interop before, but that's something I'd probalby like to try at some point since the language is much more elegant to use." Beware of using C# with Excel, it truly is much, much LESS elegant when using Excel with C# 3.5; or below. C# 4.0, however, is just around the corner and should help a LOT. If you want to go this route, I would strongly recommend either waiting for C# 4.0 to be formally released, or use the Visual Studio 2010 beta, which is very, very stable at this point.http://stackoverflow.com/questions/1888301/excel-replace-value-without-losing-formatting/1890973#1890973Comment by Mike Rosenblum on Excel replace value without losing formattingMike Rosenblum2009-12-12T17:30:24Z2009-12-12T17:30:24ZBen, what an increadible answer, holy cow. Xta, this approach would have no problem working using C#, although some of these property names might be prefixed with "get_" or "set_", but not many I'd expect.http://stackoverflow.com/questions/1506858/how-to-get-com-server-for-excel-written-in-vb-net-installed-and-registered-in-aut/1506932#1506932Comment by Mike Rosenblum on How to get COM Server for Excel written in VB.NET installed and registered in Automation Servers list?Mike Rosenblum2009-12-12T17:20:00Z2009-12-12T17:20:00ZHi Sean, glad it works for you. :-) Having mscoree.dll fully-qualified simply prevents the end-user from seeing an errant error message that can seem alarming, but actually can be safely ignored. If you follow the instructions above that begins at the point "The solution, again, is to add our own registry keys", you should be able to safely prevent this error message from appearing.http://stackoverflow.com/questions/1538597/excel-refreshing-specific-formulas-in-worksheet-programmatically/1565585#1565585Comment by Mike Rosenblum on Excel : Refreshing specific formulas in worksheet programmatically.Mike Rosenblum2009-12-10T19:45:15Z2009-12-10T19:45:15ZRashmi, glad it works for you. :-) (You should mark my answer as the correct one and/or vote my answer up, by the way.)http://stackoverflow.com/questions/1830726/monitoring-a-range-of-cells-inside-of-excel-2007-with-c-vsto/1857598#1857598Comment by Mike Rosenblum on monitoring a range of cells inside of excel 2007 with C#/VSTOMike Rosenblum2009-12-10T16:27:50Z2009-12-10T16:27:50ZNo problem, glad it helped, Daniel. :-)http://stackoverflow.com/questions/1041266/c-and-excel-automation-ending-the-running-instance/1041306#1041306Comment by Mike Rosenblum on c# and excel automation - ending the running instanceMike Rosenblum2009-11-21T20:57:25Z2009-11-21T20:57:25ZThat source on VSTO actually does imply that it's only needed for VSTO because it explains <i>why</i> it is needed for VSTO -- a reason that does not exist when VSTO is not present. "However, thinking through it I do agree." Yes, fully understanding this comes from thinking through how garbage collection works when finalizers are involved: the object are not collected until the <i>next</i> garbage collection, but the finalizers are all called during the <i>current</i> garbage collection, which is what we care about with a RCW. 'GC.Collect' and 'GC.WaitForPendingFinalizers' only have to be called <i>once</i>.http://stackoverflow.com/questions/1592440/excel-2007-udf-how-to-add-function-description-argument-help/1595339#1595339Comment by Mike Rosenblum on Excel 2007 UDF: how to add function description, argument help?Mike Rosenblum2009-10-20T15:53:49Z2009-10-20T15:53:49ZYes, that's about right, Hugh. See my detailed answer, above, though.http://stackoverflow.com/questions/1527078/vb-net-com-server-implementing-excel-udf-not-callable-with-optional-excel-rangeComment by Mike Rosenblum on VB.NET COM Server implementing Excel UDF not callable with optional Excel.RangeMike Rosenblum2009-10-13T13:29:22Z2009-10-13T13:29:22ZOk, I've updated the answer again to explain the quirky behavior regarding optional Range parameters. It does seem to be a bug, at least when called from .NET. See below. (It's my 9th revision though, so it's now a "Community Wiki", lol. Ugh, if you work too hard on an answer, you lose ownership of it. Pretty odd...)http://stackoverflow.com/questions/1538597/excel-refreshing-specific-formulas-in-worksheet-programmatically/1553051#1553051Comment by Mike Rosenblum on Excel : Refreshing specific formulas in worksheet programmatically.Mike Rosenblum2009-10-13T00:53:29Z2009-10-13T00:53:29ZRashmi, this forum does not work like other forums, which are usually a flowing list of responses. On Stack Overflow, you should edit your <i>original</i> answer to include any updates by making use of the 'edit' link. So you should use the 'edit' link to copy-paste in this post and then delete this post. This way there is only one place to read your original question and everyone else posts answers. Make sense?http://stackoverflow.com/questions/1527078/vb-net-com-server-implementing-excel-udf-not-callable-with-optional-excel-range/1533097#1533097Comment by Mike Rosenblum on VB.NET COM Server implementing Excel UDF not callable with optional Excel.RangeMike Rosenblum2009-10-12T22:53:01Z2009-10-12T22:53:01ZI can duplicate all your issues 100%. The only one that I could not duplicate originally was the IIF issue, because this dealt with an internal implementaition that you had not disclosed in your question, so I couuld only test the method signatures. Once you reported the IIF issue, I could duplicate it and every other issue you've discussed here.http://stackoverflow.com/questions/1527078/vb-net-com-server-implementing-excel-udf-not-callable-with-optional-excel-rangeComment by Mike Rosenblum on VB.NET COM Server implementing Excel UDF not callable with optional Excel.RangeMike Rosenblum2009-10-12T22:37:26Z2009-10-12T22:37:26ZHugh, I promise you that this absolutely <i>is</i> an issue with how Excel handles Range parameters, especially multiple-area Ranges and optional parameters. I agree that placing an optional non-Range parameter between the two optional Range parameters, should disambiguate, but Excel, unfortunately, still cannot interpret this and throws a #VALUE! error without calling your function.
I'll elevate this to a discussion among the Excel MVPs, and hopefully someone is able to explain this more precisely. I'll reply back again if I get a more precise answer to this.http://stackoverflow.com/questions/1527078/vb-net-com-server-implementing-excel-udf-not-callable-with-optional-excel-range/1533097#1533097Comment by Mike Rosenblum on VB.NET COM Server implementing Excel UDF not callable with optional Excel.RangeMike Rosenblum2009-10-12T16:28:48Z2009-10-12T16:28:48ZYes, my 2nd link was a typo, good picup. The link's title was right though, so partial credit, lol. I've now fixed it, above -- thanks for head's up.http://stackoverflow.com/questions/213375/excel-vba-load-addins/806720#806720Comment by Mike Rosenblum on Excel VBA Load AddinsMike Rosenblum2009-10-11T01:37:46Z2009-10-11T01:37:46Z+1 on your own question! Kind of like cheating. ;-) Nice answer though, this definitely adds to the body of knowledge.http://stackoverflow.com/questions/1527078/vb-net-com-server-implementing-excel-udf-not-callable-with-optional-excel-range/1533097#1533097Comment by Mike Rosenblum on VB.NET COM Server implementing Excel UDF not callable with optional Excel.RangeMike Rosenblum2009-10-11T00:37:57Z2009-10-11T00:37:57ZOk, no problem. I don't know, then, because I had no problems in my testing. Good luck tracking it down, hopefully my template can help you.http://stackoverflow.com/questions/1527078/vb-net-com-server-implementing-excel-udf-not-callable-with-optional-excel-rangeComment by Mike Rosenblum on VB.NET COM Server implementing Excel UDF not callable with optional Excel.RangeMike Rosenblum2009-10-10T23:57:02Z2009-10-10T23:57:02ZOk I took another look at this, Hugh. My updated answer is below. Hope this does the trick...