Step 1: Creating a Project and Adding a UDF Reference
In this step, you will create a project and add a reference to Microsoft.Office.Excel.Server.Udf.dll.
Creating the Project
The following project uses Microsoft Visual Studio 2005.
Note
Depending on which settings you use in the Visual Studio integrated development environment (IDE), the process to create a project could be slightly different.
To create a project
Start Visual Studio.
On the File menu, point to New, and then click Project. The New Project dialog box appears.
In the Project Type pane, select Visual C# Projects.
In the Templates pane, click Class Library.
In the Name box, type SampleUdf.
In the Location box, type the path where you want to save your project, or click Browse to navigate to the folder.
Click OK. Your new project appears in Solution Explorer. You also will see that a file with the default name of Class1.cs has been added to your project.
You should see the following code in the Class1.cs file:
using System; using System.Collections.Generic; using System.Text; namespace SampleUdf { public class Class1 { } }
Adding a Reference
The following steps show how to locate Microsoft.Office.Excel.Server.Udf.dll and how to add a reference to it.
To add a reference
On the Project menu, click Add Reference.
In the Add Reference dialog box, on the .NET tab, select Excel Services UDF Framework.
Note
You can also open the Add Reference dialog box in Solution Explorer by right-clicking References and selecting Add Reference.
Click OK.
Note
The previous steps assume that you are building the project on a computer that has Office SharePoint Server 2007 installed. On the computer where you have installed Office SharePoint Server 2007, you can find a copy of Microsoft.Office.Excel.Server.Udf.dll at: [drive:]\Program Files\Common Files\Microsoft Shared\web server extensions\12\ISAPI
See Also
Tasks
Step 2: Creating a Managed-Code UDF
Step 3: Deploying and Enabling UDFs
Step 4: Testing and Calling UDFs from Cells
How to: Create a UDF that Calls a Web Service
Concepts
Walkthrough: Developing a Managed-Code UDF
Understanding Excel Services UDFs