Step 5: Edit the Base.cs file
Open the Base.cs file that was automatically created when you selected the Basic template, and then rename the RunMyCustomPage() method in the file to RunEntryScreen().
As a result, the code in the Base.cs file should look similar to the following:
using System;
using System.Collections.Generic;
using System.Text;
using Sage.CRM.WebObject;
namespace CompoundEntryScreen
{
public static class AppFactory
{
public static void RunEntryScreen(ref Web AretVal)
{
AretVal = new EntryScreen();
}
}
}
Now follow the instructions in Step 6: Build your solution and copy compiled DLL.