Feb 1, 2007 #1 adalli Programmer Feb 8, 2005 44 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 Jun 10, 2003 541 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