LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

Create DLL from labview and calling it from other application

Solved!
Go to solution

I have an application built using Labview. I wanted to create DLL out of it. The application has

two String inputs start and stop buttons and two status indicators.

 

1. How to itegrate start and stop buttons from function prototype?

2. Does Labview created DLLs requires labview runtime engine when it is to be called from other application?

 

Can some one help on this.

0 Kudos
Message 1 of 3
(2,361 Views)
Solution
Accepted by topic author Yuvish

Hi Yuvish,

 

1) They should be boolean inputs to your VI. But does it makes sense to provide a stop button input at the start of your VI? (THINK DATAFLOW!)

2) Yes, the LV-RTE is needed...

Best regards,
GerdW


using LV2016/2019/2021 on Win10/11+cRIO, TestStand2016/2019
Message 2 of 3
(2,355 Views)

I agree with Gerd. If your VI is using some sort of loop that is supposed to be started and stopped with front panel Booleans, you need to rethink your design. It should just run when called and automatically return. There should not be any sort of user stopped loop in your VI. Any sort of looping should be done in the calling program.

0 Kudos
Message 3 of 3
(2,352 Views)