Error

  • Thread starter Thread starter Justin
  • Start date Start date
J

Justin

I downloaded some coed and got this one warning message. How do I
correct it

The code fragment

<Category("Progress Bar"), _
Description("Progress Bar Border Style.")> _
Public Property BorderStyle() As BorderStyle
Get
Return pnlBar.BorderStyle
End Get
Set(ByVal Value As BorderStyle)
pnlBar.BorderStyle = Value
End Set
End Property



The error message

property 'BorderStyle' shadows an overloadable member declared in the
base class 'UserControl'. If you want to overload the base method,
this method must be declared 'Overloads'. c:\My
Documents\Microsoft Visual
Basic\DIMo.Net\Progress_Bar_Control\Progress_Bar\UserControl1.vb
 
I downloaded some coed and got this one warning message. How do I
correct it

The code fragment

<Category("Progress Bar"), _
Description("Progress Bar Border Style.")> _
Public Property BorderStyle() As BorderStyle
Get
Return pnlBar.BorderStyle
End Get
Set(ByVal Value As BorderStyle)
pnlBar.BorderStyle = Value
End Set
End Property



The error message

property 'BorderStyle' shadows an overloadable member declared in
the base class 'UserControl'. If you want to overload the base
method, this method must be declared 'Overloads'. c:\My
Documents\Microsoft Visual
Basic\DIMo.Net\Progress_Bar_Control\Progress_Bar\UserControl1.vb

As the message says the method must be declared 'Overloads':

Public Overloads Property BorderStyle() As BorderStyle


Armin
 
Back
Top