VS2005, VB.
I put some buttons in winform A. I then create form B which inherits A. I
want to move the buttons to a different location in form B, but find all
properties of the button in the descendant set to readonly.
Is there a way I can adjuste these properties in the descendant? This would
make the visual inheritance much more useful.
alantolan@users.com - 04 May 2006 17:02 GMT
change the access level of the controls in the base form from Friend to
Protected (or protected friend)
hth,
Alan.
Bruce HS - 04 May 2006 17:32 GMT
Thank you!
> change the access level of the controls in the base form from Friend to
> Protected (or protected friend)
>
> hth,
> Alan.