Hide Label

tbpowers

Active member
Joined
Dec 12, 2011
Messages
41
Programming Experience
Beginner
I am successfully hiding a combobox, based on the selection of another combobox. However, I can not get the label of the combobox to hide as well. The code I am using, which is basically the same code for hiding the combobox itself returns the following error:

Error 1 'DOCUMENT_EVALLabel' is not a member of 'WindowsApplication1.Form1'

Any ideas? Here is the code I am using for the label:
Me.DOCUMENT_EVALLabel.Visible = (EVALUATIONComboBox.Text = "Text")
 
Back
Top