You are performing final acceptance testing on your application prior to shipping it. You have set a breakpoint inside the SelectedIndexChanged event handler for a combo box. However, when you select a new value in this combo box, the code does not stop at the breakpoint. What could be the problem?
Select Answer:
Selecting a value in a combo box does not fire the SelectedIndexChanged event.
You are executing the project by using the default Release configuration.
You have neglected to add the (Conditional("DEBUG")) attribute to the event handlers.
You have neglected to add const in DEBUGGING = 1 to the code
|