I am trying to develop some custom controls (custom ComboBox's mostly), and I have been having some issues with the designer not being able to resolve parent control types. Basically I have:
Enterprise.Controls.Dll: SomeComboBox:ComboBox Product.Controls.Dll: OtherComboBox:SomeComboBox Product.UI.Dll: ProductForm --> OtherComboBox When I try to drop OtherComboBox onto form ProductForm, I get an error saying that it cannot resolve the superclass of OtherComboBox (SomeComboBox) even though the Product.UI project has a reference to this assembly. It would appear that the assembly resolution takes place with no regard for the project references? Is there any way to get the designer to recognize the base class? Thanks
