"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.