A set of .NET Framework managed libraries for developing graphical user interfaces.
The error indicates that the Windows Forms Designer cannot find the type DVLD.ctrPersonInformation because its assembly is not available or not built for the current platform.
To fix this:
- Build the project that defines
DVLD.ctrPersonInformation:- In Visual Studio, select Build > Build Solution.
- Ensure the build configuration matches the platform used by the designer (for example, Any CPU or the specific platform mentioned in the error).
- Verify the project reference:
- In Solution Explorer, expand the project that shows the error.
- Under References (or Dependencies), confirm there is a reference to the project or assembly that contains
DVLD.ctrPersonInformation. - If missing, right-click References/Dependencies > Add Reference… and add the project/assembly that defines
DVLD.ctrPersonInformation.
- Rebuild and reopen the form:
- After adding/fixing the reference, rebuild the solution.
- Close and reopen the form designer so it can load the control from the newly built assembly.
If DVLD.ctrPersonInformation is in the same solution but in a custom control project, that project must build successfully before the designer can display it.
References: