Originally Posted by MrPolite
uuh ok first of all tell me what you're doing, because I don't understand why you would want to use a different combobox and not the one that comes with .NET. The Windows Forms combobox should do for most needs.
second, what type of dll is this? .NET dll?
You can't modify a dll (unless it's .NET and you decompile it, which would be illegal:) ). You could try inheriting from the combobox that's defined in that dll and then add your own methods and etc to your inherited class. For example:
public class MyComboBox:mis.controls.stores.storecombobox
{
// override methods or add new ones here
}
I think you should just use the .NET comboboxes. I have no idea what that dll is