12-25-2012 09:34 PM
Hi all,
I'm looking for a string in a vi/ vi's inside a llb, I looked online and only searching-for-vi-name is possible. I've read over the help files but I don't really understand what I'm suppose to do so can someone please let me know if there's a way to search a specific string in a vi/ vi's inside a llb file. Many thanks.
Solved! Go to Solution.
12-25-2012 11:42 PM
You don't have the direct option (May be there, Am not sure) but you can do that by using the vi scripting. But you will not be able to build that as an application, you can use it as a vi.
12-26-2012 05:04 AM
As Anan already pointed out, you will have to use LabVIEW functions to enumerate the contents of the LLB, load each VI and use then VI scripting on it to find the string. Trying to do that on the LLB file directly is completely useless, since on the VI level LabVIEW nowadays uses the zlib deflate algorithme to compress most parts inside of it, and the LLB uses also some (less fancy) compression algorithme to compress each VI resource too.
And since VI scripting is a development only feature you can indeed not really use this option in a built application.
12-27-2012 11:56 PM
Thanks for both of you.