This does make some amount of intuitive sense. ActiveX containers run in the user interface thread of LabVIEW. If a property or invoke node takes a very long time to return, it could prevent the user interface from being able to detect events. There ins't anything you can really do from the operating system that would matter. Its somewhat odd for this to be a problem however. An ActiveX property really should not take so long to execute. Either way, to avoid it I think you would have to get the control to run in some other thread. I don't think this is possible. The only thought I had was to put another instance of the control in a subVI, set the subVI to run in a different thread, and don't show the subVIs front panel. I don't really think it will ma
ke a difference though.