03-08-2016 10:10 AM
@Hatef.fouladi wrote:try this
Hatef, please try to make your code thorough enough so that new LabVIEW developers can learn best practices from it.
Cheers
--------, Unofficial Forum Rules and Guidelines ,--------
'--- >The shortest distance between two nodes is a straight wire> ---'
03-08-2016 10:30 AM
James.Morris
you are right I fix them
thank you for your attention
03-08-2016 09:14 PM
First of all I want to thank you all for your time. The issue is solved. I still have some basic questions regarding to labview and training materials you put here. I have listened and read some of those materials and links that you introduced in the past but I personally do not learn that way. I learn based on mistakes and playing with the software and getting errors and also by asking questions. I do not read from a to z of something just as much as I need. Now few more questions for more clarification:
1.If we have for example two while loops inside each other, how does labview start reading it? From inside loop or the outside loop?
2.The link for the 3 hour training is not working.
3.Labwiki link is not working
4.There is a link for RIO, I have worked with DAQ systems, would you please beiefly tell me what RIO can do that DAQ can not?
5.If I want to ask more questions should I ask them here or open a new topic (if they are not alreay exist or not clear in the past forum topics)
Thanks again
03-09-2016 09:43 AM
@SilasIII wrote:First of all I want to thank you all for your time. The issue is solved. I still have some basic questions regarding to labview and training materials you put here. I have listened and read some of those materials and links that you introduced in the past but I personally do not learn that way. I learn based on mistakes and playing with the software and getting errors and also by asking questions. I do not read from a to z of something just as much as I need. Now few more questions for more clarification:
1.If we have for example two while loops inside each other, how does labview start reading it? From inside loop or the outside loop?
2.The link for the 3 hour training is not working.3.Labwiki link is not working
4.There is a link for RIO, I have worked with DAQ systems, would you please beiefly tell me what RIO can do that DAQ can not?
5.If I want to ask more questions should I ask them here or open a new topic (if they are not alreay exist or not clear in the past forum topics)
Thanks again
Thanks for pointing out the link issues!
LabVIEW programming is based entirely on dataflow and parallelism. This is incredibly powerful and has lead to its success over the years (coupled with the graphical programming), but is usually one of the first things that new developers stumble over. Here's a simple resource to become more familiar with how it works. The Highlight Execution feature is a great way to watch how your application utilizes dataflow. With nested While loops, the outside loop iterates once, then the inside one iterates as many times as it wants. Then when the inside loop finishes, the iteration is finished and the outside loop may go to its second iteration.
Cheers
--------, Unofficial Forum Rules and Guidelines ,--------
'--- >The shortest distance between two nodes is a straight wire> ---'