From Friday, April 19th (11:00 PM CDT) through Saturday, April 20th (2:00 PM CDT), 2024, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabWindows/CVI

cancel
Showing results for 
Search instead for 
Did you mean: 

Labwindows to Labview programmming

Hi alll,

I am LabWindows/CVI developer from past 2-3 years. Now i need to work on Labview to create test automation tools.

 
To make it Labview programming easy, can i compare LabWindows i.e. Functions and variables etc. with LabView programming. It helps me to learn LabView quickly as i am already know LabWindows.

Only thing i can easily compare is Labview is graphical programming language.

 

Any standard guide line for this .

 

If anybody explain from development to building exe both in LabWindows and Labview will be helpful.

 

Regards,

Anand

0 Kudos
Message 1 of 2
(1,922 Views)

Moving from CVI to LabVIEW is not a trivial task: while most functions are similar (same algorithms, similar input / output parameters...) the overall structure of applications is quite different and must be taken into consideration to avoid problems.

With this I mean that LV is intrinsically a parallel execution architecture: while in CVI multithreading must be explicitly programming, under some circumstances every single node in LabVIEW can be executed independently from the others. Crucial in this respect is the concept of dataflow programming: a VI can be executed at any time when (but only when) all its inputs are ready. With this I mean: to sequence the execution of several VIs you must have at least a wire that comes from one logical step to the next one (the error cluster wire is very useful in this respect but is not necessarily the only one).

Parallel execution is powerful but can be a hassle if you don't consider it carefully while developing a complex application.

I suggest you to run through some getting started document to familiarize with basic concepts and then find some literature (the panorama is huge!) on the special aspects you need to face in your application.



Proud to use LW/CVI from 3.1 on.

My contributions to the Developer Community
________________________________________
If I have helped you, why not giving me a kudos?
Message 2 of 2
(1,902 Views)