[Help]ComboBox Selection[Solved]
Say i had a com
x right?
And then i wanted a TextBox to be visible once a certain item of the Com
x is selected. How would i do that. Mj's code will visible on any selected change
Try , For a specific item it will be
[php]
If Combobox1.selecteditem = "Item Here" Then
Textbox1.Visible = true
End if
[/php]
or use selected index (knowing which index you want it to display on)
[php]
If combobox1.SelectedIndex = 1 Then 'or the index you want to display the textbox
TextBox1.visible=true
else
textbox1.visible=False
end if
[/php]
Thanks NextGen, i think its working nao =D
I would try if my vb worked :P
Thanks this will become helpful
That could work, but in my case i'd prefer to use NextGen's solution. Thanks for sharing though Blubb =D
Yes! And also the situation!
Not a problem, Marked Solved
Left Open for other users