03-24-2016 11:06 AM
It's like instantiateing 50 variables in text, and then never using them.
String TestType = new String("TestType");
String IndividualFault = new String("IndividualFault");
....
....
String CollectedData = new String("CollectedData");
I remember once getting frustrated with all the wires on my block diagram going all over the place. So I aligned all my wires horizontally so they were all exactly on top of each other. I thought that look was cleaner because instead of having 20 wires go from left to right there was just one, with 19 others behind it. We all did crazy things when we were first learning.
Unofficial Forum Rules and Guidelines
Get going with G! - LabVIEW Wiki.
17 Part Blog on Automotive CAN bus. - Hooovahh - LabVIEW Overlord
03-24-2016 11:49 AM
In my first VI I wanted to deal with all of the wires but nobody in the lab knew how to make a cluster. I created a sub-VI from a bunch of the code that required the worse case connector pane. It looked like spider.
Ben
03-29-2016 09:52 AM - edited 03-29-2016 10:01 AM
@Hooovahh wrote:
I remember once getting frustrated with all the wires on my block diagram going all over the place. So I aligned all my wires horizontally so they were all exactly on top of each other. I thought that look was cleaner because instead of having 20 wires go from left to right there was just one, with 19 others behind it. We all did crazy things when we were first learning.
Don't think you are allone.
Day ONE, I was given a look at LabVIEW, Shown haw to use the tools, Functions, and Controls panels and was told to just build anything. I did use subvis to keep my BDs clean, HOWEVER ---(pause for effect.)
05-18-2016 09:25 AM
I didn't know if this belongs in Local Abuse or Flat sequence structure abuse. But here's one snippet of code seen here:
"I won't be wronged. I won't be insulted. I won't be laid a-hand on. I don't do these things to other people, and I require the same from them." John Bernard Books
05-18-2016 12:42 PM - edited 05-20-2016 10:13 AM
@bsvare wrote:I didn't know if this belongs in Local Abuse or Flat sequence structure abuse. But here's one snippet of code seen here:
Programmed like a true text programmer: First define all "variables" and then use value property nodes for everything 😄 Sigh!
Lets look on the left...
(Also note that read from spreadsheet file could just read the first colum as a 1D array (set transpose to true), simplifying the indexing dramatically.)
08-07-2024 10:10 AM