Click here to Skip to main content
16,012,468 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
hi, i had initally set the combobox visible property as false

then how can i enable the "combobox2" to make visible by selecting the item in the

"combobox1"
Posted

1 solution

Try this code :
VB
Private Sub ComboBox1_TextChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles ComboBox1.TextChanged
        ComboBox2.Visible = True
End Sub

I hope it will help you. :)
 
Share this answer
 
Comments
ANANTH P 1-Dec-11 1:41am    
tank u

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900