View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Jens Thiel[_2_] Jens Thiel[_2_] is offline
external usenet poster
 
Posts: 44
Default Excel 2003: custom function with dotnet

"Thomas Mutzl" wrote
Is it possible (and HOW?) to write a user defined
(=custom) function in managed code??


Have a look at http://ManagedXLL.net/ where the answer would look like this:

using ManagedXLL;

[WorksheetFunction]
public static int Test(int x)
{
return x*x;
}


Jens.