Hi.
I don't know if this is what you're after?
VB Code:
Private MyShowAllThree As Boolean = True Public Property ShowAllThree() As Boolean Get Return MyShowAllThree End Get Set(ByVal Value As Boolean) MyShowAllThree = Value TextBox3.Visible = MyShowAllThree End Set End Property




Reply With Quote