10-28-2015 02:57 PM
Having a problem with registering user events in conjunction with value change of controls in an event structure programmatically. If the control is registered the first time all is fine… the control changes the temperature. The second time the control is registered, the events stop working after the first value change.
In the real application the User events are heavily used and the control references changes but this is as simple as I could make it.
Solved! Go to Solution.
10-28-2015 06:33 PM
Here's a fixed version. You were creating a new event registration rather than modifying the first. The first event reg was set to lock the UI untill the event was handled, but it was never handled as you had substituted your new reg.
10-29-2015 07:11 AM
Got it. Thanks for the solution.