Jump to content

Horrible Event Structure Bug!


Recommended Posts

Hi All,

I have recently discovered a subtle, but potentially disastrous, bug that can cause the Event Data Node to get confused as to the order of items which appear. I noticed this bug in LV2013 SP1 and have verified it still exists in LV2015 SP1.

Please can somebody try recreate this on their system. I have not bothered installing 2016 and 2017 yet so cannot verify if the bug still exists.

To recreate the bug:

  1. Open the attached VI. Notice the NewVal output is used. Also notice the Source element has been hidden.
  2. Add a new event, the Slide Value Change event to the existing Numeric value Change event. Notice the Source element is now present again and now OldVal is used

 

Before.PNG

After.PNG

ES Test.vi

  • Like 1
Link to comment
2 hours ago, Neil Pate said:

I have recently discovered a subtle, but potentially disastrous, bug that can cause the Event Data Node to get confused as to the order of items which appear. I noticed this bug in LV2013 SP1 and have verified it still exists in LV2015 SP1.

Thanks for letting us know. I wasn't aware of that even though I tend to hide unnecessary event data, adding more events later. Now that I know about it Murphy's law will most likely cause a lot of my code to break during the next weeks :(

I have tested your VI in LV2015 SP1 and can confirm that behavior as well. This bug happens actually as long as there are at least two values available before adding a new event:

Add Event Bug.pngAdd Event Bug 2.png

It is also not limited to the "New Value" data. It seems the node is connected via index (which as far as I know from VI scripting is how everything is connected). When a new event is added the original event data node gets restored and the index is not updated properly.

However if all visible nodes are connected there is no issue:

Add Event All Connected.pngAdd Event All Connected 2.png

Surprisingly there is also no issue if the very first element is connected:

Add Event First Connected.pngAdd Event First Connected 2.png

My guess: LabVIEW only checks if the very first node is connected and for some reason assumes none of them is used, therefore decides to reset the node.

Hope they provide a fix for LV2015 too :)

Link to comment
7 minutes ago, Neil Pate said:

I have always actually disliked the fact that if you duplicate an event the IDE resets the Event Data Node to the full set. I have probably had this bug in the past but never actually noticed it.

I don't remember them resetting when duplicating events. At least this is working fine in LV2015, so maybe it is specific to LV2013?

Only when adding new events the nodes get reset, which is indeed quite annoying.

Link to comment
On 2017-6-16 at 6:34 PM, LogMAN said:

I don't remember them resetting when duplicating events. At least this is working fine in LV2015, so maybe it is specific to LV2013?

Only when adding new events the nodes get reset, which is indeed quite annoying.

Hmmm, I cannot seem to recreate that behaviour either, but am pretty sure I have seen something similar.

Link to comment
2 hours ago, Neil Pate said:

Hmmm, I cannot seem to recreate that behaviour either, but am pretty sure I have seen something similar.

I have been playing around with this and found some interesting behavior.

In the following VI I created a value changed event for a slide, duplicated it to another slide and finally to a numeric:

Original.png Duplicate Same Type.png Duplicate Different Type.png

As you can see the generated event differs depending on the type of the selected control:

  • Duplicating events to a control of the same type retains the data node.
  • Duplicating events to a control of different type resets the node.

I wasn't able to reproduce your behavior because I generally put the control inside the event case that handles the Value Changed event. I only duplicate events which are of the same type or those which are working generically for example by connecting the CtlRef element, in which case I hide all other elements thus I don't get the bug.

One more thing: If you duplicate an event without assigning a control right away (just confirm with OK) and later assign a control of the same type as the source event (a slide in my case), the node of the resulting event will be reset:

Original.pngAdd Event Without Target.pngEdit Event Without Target.png

Edited by LogMAN
Link to comment

The bug is in 2016-64 as well.
Also if you remove one event it also defaults back to default view.

Event1_001.pngEvent2.png

You seem to be safe if you never hide anything or if you hide all unwired terminals.

BTW I've not seen the old bug where the node got disconnected from the frame lately, maybe at least they fixed that one.

Event3.png

 

 

Link to comment

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.