Hi David,
I am updating a GPAddin project from GP 2018 to GP 18.4, this addin has many forms that inherited DexUIForm. However after adding the Microsoft.Dexterity.Shell and Microsoft.Dexterity.Bridge dlls for GP 18.4 to the project, I cannot open the form in design mode.
I am using VS2022 with the latest update.
The error:
“The designer could not be shown for this file because none of the classes within it can be designed. The designer inspected the following classes in the file: DynamicsGPForm1—The base class ‘Microsoft.Dexterity.Shell.DexUIForm’ could not be loaded. Ensure the assembly has been referenced and that all projects have been built.”
I was wondering if there is a work around for this issue.
Microsoft say they are not supporting VSTools any longer.
using Microsoft.Dexterity.Applications;
using Microsoft.Dexterity.Bridge;
using Microsoft.Dexterity.Shell;
namespace DynamicsGPAddin4
{
public partial class DynamicsGPForm1 : DexUIForm
{
public DynamicsGPForm1()
{
InitializeComponent();
}
}
}