Since Applying the latest service release, going from 12.1.20121.1001 to 12.1.20121.2038
I keep getting this error when trying to open screens which use the grid.
label, charts, texteditor, the rest works well
my references are OK and i have run the Version Utility as well. I also fixed the licence file.
Hi Fred,
Something has to be wrong with your project references somewhere along the line - because the error message indicates that the it is look for12.1.20121.1001. That's the release version, not the service release. So something in your project must be referencing it.
Perhaps you have more than one project in the solution and you only updated some of them, but not all?
Perhaps your application is referencing some other assembly that is using the 1001 version of the grid?
Also, the screen shot you posted does not list the Infragistics.Win assembly. I assume it probably just got cut off, but I thought I would mention it just in case that reference is, in fact, actually missing from your project.
I did also have the Infragistics.Win reference.. i was just cut off.
I ended up fixing it with a app.config patch
<dependentAssembly> <assemblyIdentity name="Infragistics4.Win.UltraWinGrid.v12.1" publicKeyToken="7DD5C3163F2CD0CB" culture="neutral"/> <bindingRedirect oldVersion="0.0.0.0-12.1.20121.2038" newVersion="12.1.20121.2038"/> </dependentAssembly>
fixed it