I have extended UltraGrid and create UltraGridEx component.
I have all Extended complonent in an Assembly (Project) "MyCustomComponent".
Now, I added a project with Form1 class.
When I drag and drop the control from ToolBox. Control is success fully added but 'Infragistics2.Shared.v8.2 is not added automatically in AddReference node of Solution Explorer,
While compiling follwing error occured,
Error 1 The type 'Infragistics.Shared.Serialization.ICodeDomSerializable' is defined in an assembly that is not referenced. You must add a reference to assembly 'Infragistics2.Shared.v8.2, Version=8.2.20082.2022, Culture=neutral, PublicKeyToken=.
Error 2 The type 'Infragistics.Win.CalcEngine.IUltraCalcParticipant' is defined in an assembly that is not referenced. You must add a reference to assembly 'Infragistics2.Shared.v8.2, Version=8.2.20082.2022, Culture=neutral, PublicKeyToken=.
Error 3 The type 'Infragistics.Shared.IUltraLicensedComponent' is defined in an assembly that is not referenced. You must add a reference to assembly 'Infragistics2.Shared.v8.2, Version=8.2.20082.2022, Culture=neutral, PublicKeyToken='.
My guess is that the toolbox item for your control is out-of-date and you need to remove it and re-create it.
But you can, of course, just add the correct references to your project, also.
Thanks, both of you.