If had a few nasty problems with dealing with complex event sources (DAQmx and IMAQdx). This is in LV 8.5 with Vision 8.5 and Vision Acquisition 8.5 and and DAQmx 8.6
1. Modifying an event registration with with an event with more than one input (ie Change Detection Event on a Digital signal), can mess up the event registration.
for example in the block diagram of DAQmx.vi detach the user event, shrink the event down to just the DAQmx event now try to reattach the user event.
2. Registering Events unregisters other dynamic events (or perhaps none of dynamic events work). Run Simple.vi to see whats supposed to happen (since it just uses user events). You can trigger the user event after Registering another user event. In the DAQmx and IMAQdx vi's the user events stop working.
3. Registering events doesn't match match the input event registration, to see this add a camera attach event to the IMAQdx.vi (you may need to remake the first event registration due to problem one). Now look at the Reregister event node in event structure (I've messed it up with different out comes but it never seems to work right if there's more than one event with multiple inputs).
As a side note IMAQ Close Camera can return before it's done fully closing (that's why there is a delay in the IMAQdx example. Since If you Reregister the camera it'll error trying to open an already opened camera.
As for what I'm really using this for, I'm capture video from a firewire camera that can be triggered by a digital input on my DAQ board. And I have to stop acquiring images if the camera becomes detached, since if I unplug and plug back in my camera during a capture it blue screens my computer (which is rather bad).