VS2008SP1
I have a component derived from IComponent (tried to derive from Component also)
If two of my components are placed on the form and one of them is selected, then I can't select another one. I have to click somewhere else first, to clear selection.
Changing selection between my component and any another component (for example System.Windows.Forms.Timer) goes without any problems in both directions.
Also, when I try to set some property value to these component, Instead of
_component1.MyProperty ="x"; _component2.MyProperty ="y";
code in designer file, I'm getting
_component1.MyProperty ="x"; _component1.MyProperty ="x";
Any help is welcome.
