i found the code to make it invisible everywhere now
vb Code:
Imports System.ComponentModel ''this overrides the text property + hides it from the properties ''window + the code editor <EditorBrowsable(EditorBrowsableState.Never)> _ <Browsable(False), DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)> _ Public Overrides Property Text() As String Get Return MyBase.Text End Get Set(ByVal Value As String) End Set End Property




Reply With Quote