08-08-2025 04:30 PM
I seek a way to automatically put in a document the descriptions of all VIs, including subVIs, of my own creation in a project. The result of the effort so far is attached. These were created in LabVIEW 20.0.1f1
I have a way to recurse into all class method VI's. I did not find a way to do recurse into subVIs. I can only get into the VIs listed under "My Computer' the project's Items tab. Is there a way to recurse into the subVIs of the all the VIs listed there?
08-08-2025 04:45 PM
Once you have a VI reference, there is an invoke node you can run on it called "Get VI dependencies":
You probably want to use that on all your VIs in your project, and using the "paths" output to load more VI references. If you use the "Get hierarchy" then it gets the subVIs of subVIs and so on.
You will likely need to do some de-duplication as well as excluding VIs from vi.lib, and possibly some other filters as well.
08-09-2025 03:46 PM
Maybe you can use this.