Hi! Check out following scenario:
A User control which contain two combo boxes...
First combo box contain list of States and Second combo box contain list of Cities. When you select a state the second combo box will contain list of cities using a LINQ query. When you select another state in first combo box the second combo box's items clear and refill. but when you want to open it DING DING! application gets HANG and your CPU will be 100% full!!!
unfortunately no Exception occurs during this operations and i don't know what to do!
NOTE: I am sure my LINQ operations and other operations work good and there is no infinite loop or dirty code or something else!
Any idea or such problem?