From 04:00 PM CDT – 08:00 PM CDT (09:00 PM UTC – 01:00 AM UTC) Tuesday, April 16, ni.com will undergo system upgrades that may result in temporary service interruption.

We appreciate your patience as we improve our online experience.

LabVIEW

cancel
Showing results for 
Search instead for 
Did you mean: 

How to obtain the version of a packed library file programmatically

Hello!

 

I have two major questions today. The first - how do I obtain the version number/information of a packed library, programmatically in labVIEW?

 

Secondly, how would you find the .dll dependencies of  a packed library if the .dlls are external to the library? I understand that that kind of information isn't exported when the lvlibp is built, but is there any way to find out what .dll/which .dlls it will load into memory BEFORE it actually loads them/calls them?

 

Ultimately, I hope to combine both of these into a task that will tell you the version information of a packed library, the packed libraries that it calls, and the file versions of the .dll files in both.

 

Thanks!

Message 1 of 8
(6,876 Views)

I figured out how to obtain the version information programmatically. You can use a vi from vi.lib to retrieve the file information - previously I thought that it only worked for .dll and .exe files.

The name of the vi is "FileVersionInfo.vi" and it can be found under (labVIEW version)\vi.lib\Platform\FileVersionInfo.vi

 

Still need help with the second problem though. I might post it under a different thread.

 

0 Kudos
Message 2 of 8
(6,846 Views)

Try this.

"If you weren't supposed to push it, it wouldn't be a button."
Message 3 of 8
(6,826 Views)

I'm running labVIEW 2012 - is there anyway I can open this?

0 Kudos
Message 4 of 8
(6,799 Views)

Here it is.

"If you weren't supposed to push it, it wouldn't be a button."
Message 5 of 8
(6,784 Views)

Thanks, that turned out to be really helpful.

 

Is the code supposed to completely flatten the block diagram of a referenced VI? Because I think that it may not do just that - in debugging, it seems like a lot of the GObject class names right before the case structure in "Get VIs Called DLLs and Dot NET DLLs.vi" are "SubVI." Most/all of the VIs in my lvlibp that have CallLibrary nodes are subVIs (maybe even subsubVIs), so that might explain why it isn't working very well for me.

 

I've never worked with OOP before so I apologize if I'm not understanding this correctly.

0 Kudos
Message 6 of 8
(6,765 Views)

I was searching the NI website for a list of all possible diagram "class names" when I stumbled across this discussion and it just so happened to do what I was looking to do with the class names. Like zkabitz I was wanting to operate on a VI heirarchy rather than just a single VI but Paul's library for the VI did 95% of the heavy lifting (thank you!) so it was a simple enough matter to add support for subVIs. The attached library makes makes use of (and includes) a two of Paul's subVIs and modifies his top-level VI to include support for checking out subVIs.  I decided it would be more efficient to modify his top level VI to include a case for a "SubVI" objects than it would be to call his unmodified top-level VI from a new VI that would itself have to go through much of the same work to flatten a bunch of block diagrams to pick out all the subvi objects.

Message 7 of 8
(6,509 Views)

Hi,

 

also have a look here. Worked for me. You can also get the file version of the packed library through commandline/powershell.

 

https://stackoverflow.com/questions/25648155/windows-command-line-to-read-version-info-of-an-executa...

0 Kudos
Message 8 of 8
(917 Views)