I created a version of the standard TextBox that adds an IsValid property. When I started using this control in my project, I had IsValid initially set to False inside my component. Now, I want to have it initially set to true. I made the changes to the component and recompiled the code. Everywhere I already have this control, it still remembers this default value since it is in the .Designer file.
How do I get this to update when I make a change? Surely, I don't have to manually do this.
Code:<System.ComponentModel.Browsable(False)> _ Property IsValid() As Boolean Get Return _IsValid End Get Set(ByVal value As Boolean) _IsValid = value End Set End Property




Reply With Quote