Message
Could not load file or assembly ... or one of its dependencies.Context
Opening a form in Design Mode in Visual Studio 2010Explanation
The Copy Local property of a referenced DLL appears to be true, but actually it is not set to True in the XML project file.
Looking inside the XML file:
<Reference Include="...">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\C1.Win.C1FlexGrid.4.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="...">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\C1.Win.C1FlexGrid.4.dll</HintPath>
<Private>True</Private>
</Reference>
We should see a code like this one, but the yellow line "<Private>True</Private>", that is the one corresponding to the Copy Local property value, is missing.
Solution
The line could be manually inserted, but better proceed this way:- Right click on the DLL that is giving the problem.
- Set the Copy Local property to False.
- Save the projetct
- Set the Copy Local property back to True.
- Save the project again.