"João Santa Bárbara" <(E-Mail Removed)> wrote in message
news:%(E-Mail Removed)...
> how can i convert this
>
> public NumPointsPropertyDescriptor(PointsPropertyTab owner) :
> base("NumPoints", new Attribute[]{CategoryAttribute.Data,
> RefreshPropertiesAttribute.All})
> {
> this.owner = owner;
> }
>
> to VB.NET
>
The is a call to a superclass constructor. In VB use MyBase.New
public sub new(owner as PointsPropertyTab)
MyBase.New("NumPoints", new Attribute()
{CategoryAttribute.Data,RefreshPropertiesAttribure.All})
me.owner = owner
end sub
David
|