I need to to this: If the selected option / item is "Enabled" I want to preview a textbox.
I've tried this:
If ComboBox6.SelectedItem = "Enabled" Then
TextBox10.Visible = True
Else
TextBox10.Visible = False
End If
And also this:
If ComboBox6.Text = "Enabled" Then
TextBox10.Visible = True
Else
TextBox10.Visible = False
End If
Thanks in advance,
Isaac
PS: I'm using DropDownList