04-28-2025 08:53 AM
To set a FP as Floating, the IsFloating property must be used. The use of this property is not recommended but, to my knowledge, there is no better alternative (LabVIEW 2021). This is the simplest code, and it works — just set it to True.
However... setting it to False was a gamble for me. I could not understand why, in most cases, the FP remained floating even though the read value was False.
Some experiments revealed interesting behavior: if IsFloating is set by an external asynchronous process, it works correctly in both directions.
But... only if the FP of the asynchronously called VI is open.
Thus, this is the working solution.
It does not matter whether the second VI is started with the VI Server or with the Start Asynchronous Call node.
Could you explain this strange behavior?
04-28-2025 09:22 AM
@_Y_ wrote:
To set a FP as Floating, the IsFloating property must be used. The use of this property is not recommended but, to my knowledge, there is no better alternative (LabVIEW 2021). This is the simplest code, and it works — just set it to True.
What about using a VI property node with "FP.Behavior" and setting it to floating?
04-28-2025 10:04 AM
Thank you UliB, I missed this property.
But the academic interest still here. What causes this strange behavior?