01-26-2021 08:43 AM
I'm trying to obtain the info from the context help for some VIs, and I was able to get the description (using a basic property node) but the only way to obtain the wire pane I found is using LabVIEW scripting (which apparently cannot be used in .EXE apps).
I know that I can save the image of the wire pane and just call the file wherever I need to, but I'd like to just call it programatically.
Below is what I currently have.
I appreciate your help 🙂
Solved! Go to Solution.
01-26-2021 09:03 AM
Some normal scripting doesn't work in executables.
Some scripting stuff does work in executables.
You have to look at the specific property\method to know if it's available in executables.
If you can do it in scripting, there might be no alternative. If there is, there's no guarantee it will work in an executable.
01-26-2021 09:04 AM
Help says Get Conpane Image Method is Available in Run-Time Engine.
01-26-2021 09:09 AM
Thanks!
It didn't occur to me to check if scripting had any documentation at all (first time using it).