Click or drag to resize
Script Add-Ins (VB.NET)

This topic shows how to create a script add-in for CUSTOMTOOLS using the Visual Basic.NET programming language with the Microsoft Visual Studio 2015 IDE.

Creating a Visual Basic project for the script add-in
  1. Start Microsoft Visual Studio 2015.

  2. Click File, New, Project.

    TIP: You can begin the new project also by clicking the New Project link under the Start group in the Start Page in Visual Studio 2015.

  3. Open the Installed node on the left side of the New Project dialog box.

  4. Select Visual Basic, Windows Desktop from the tree view under the Installed node.

  5. Select the .NET Framework 4.5.1 as the target framework version and then select Class Library as the project type.

  6. Type the name of your script add-in project into the Name box.

  7. Click the Browse button and then navigate to the folder you want create the project to. Then click the Select Folder button to select the destination folder.

  8. Click OK.

    The Class Library project called ClassLibrary1 which have an empty class called Class1 included, is created.

You have now successfully created a Visual Basic project for the CUSTOMTOOLS script add-in.

See Also