If combobox35 = anything other than "blue" make textbox646 visible

Pedigreeman

Registered User.
Local time
Today, 11:29
Joined
Mar 14, 2011
Messages
57
Hello all.

Can somebody please tell me the correct way of entering the above statment in the afterupdate coding of combobox35

Many thanks
 
Code:
if combobox35.column(x)<>"Blue" then
Textbox646.visible=true
endif
where x is the number of the column you want to check, starting from 0. You should think about naming your controls a bit more memorably though :)
 
Thank you sir!
 

Users who are viewing this thread

Back
Top Bottom