ā06-05-2006 03:10 AM
ā06-05-2006 09:12 AM
When you create a dll with the LabVIEW app builder, you can have as many functions as you just by adding additional top level VIs. Each one of these will have a different name. So, if you have created a VI called FtoC, create another called FtoCArray, add it to the soruce files when building the dll. When built, your dll will have two functions - FtoC and FtoCArray. If your VI has an array input and an array output, you function prototype would be something like "void FtoCArray(double f[], long len, double c[], long len2)".
A subVI is no different than any top level VI. You just have to make sure that the front panel controls and indicators are wired to the VI's connector pane.
ā06-06-2006 12:37 AM
ā06-06-2006 08:27 AM
ā06-08-2006 06:43 AM
ā06-08-2006 08:31 AM
ā07-01-2010 07:01 PM