I'm using Labview 8.20. I'm trying to create a simple GUI program using an event structure, where the program executes when the user clicks on a button. So far, I've done this simply by using the event structure and adding an event for the button's value change. I just realized that the button itself has a latch when released mechanism; when the user clicks on it, it's going to toggle from 0 to 1, then back to 0. I'm now concerned that the value change event would then toggle twice; once when the button toggles from 0->1 and again when it toggles from 1->0.
I've written similar programs before and I've never had any problems before; I'm pretty sure that the event will only fire once when the user clicks on the button, but can someone please confirm this for me?