A set of .NET Framework managed libraries for developing graphical user interfaces.
According to the Windows Forms designer error documentation, this error usually means the designer cannot find the referenced type because the required assembly or project reference is missing, or the control/project has not been built successfully yet. Microsoft specifically recommends checking that the type and any dependent assemblies are referenced, then rebuilding the solution. If the control has already been built, you can also add the reference manually from the References or Dependencies node in Solution Explorer.
You may want to check:
-
DVLD.ctrPersonInformationexists in a referenced project or assembly - the project/solution builds successfully
- cleaning and rebuilding the solution helps
- the control was renamed, moved, or its namespace changed
Also it would be great if you can provide a bit more context?
- Is
ctrPersonInformationa customUserControlin the same solution? - Does the full solution build successfully?
- Did this start after renaming files, changing namespaces, or moving the control to another project?
- Is the error happening only in the designer, or also at compile time?
- Can you share where
DVLD.ctrPersonInformationis defined and how it is referenced?
I hope this helps. If you found my response helpful or informative, I would greatly appreciate it if you could follow this guidance or provide feedback.
Thank you.