Feb 1, 2007 #1 adalli Programmer Joined Feb 8, 2005 Messages 44 Location MT Hi, I am trying to create a class which inherits a button. The purpose is to override the Enable and Visible properties. It seems that you can't override these two propeties. It this true? Many thanks in advance
Hi, I am trying to create a class which inherits a button. The purpose is to override the Enable and Visible properties. It seems that you can't override these two propeties. It this true? Many thanks in advance
Feb 2, 2007 #2 SHelton Programmer Joined Jun 10, 2003 Messages 541 Location GB Use Shadows to hide the base property: Code: Public Shadows Property Enabled() As Boolean Get End Get Set(ByVal value As Boolean) End Set End Property Upvote 0 Downvote
Use Shadows to hide the base property: Code: Public Shadows Property Enabled() As Boolean Get End Get Set(ByVal value As Boolean) End Set End Property