TheWizardofInt
Junior Contributor
Code:
Private mVariable As struConditions
Public Structure struConditions
Dim bVisible As Boolean
Dim sUrl As String
End Structure
Public Property sVariable() As struConditions
Get
Return mVariable
End Get
Set(ByVal value As struConditions)
mVariable = value
End Set
End Property
Doesn't let me reset bVisible to True when I call
Class.sVariable.bVisible.Equals(True)
What am I doing wrong?