Glenn Vandevelde
Glenn Vandevelde

Reputation: 43

Installshield read .properties file

I'm new to installshield and i need to read a .properties file prior to install. Because the wizard name, headers are declared in that. The structure is like this: install.wizard.name="MyApp".

First is this possible in installshield? And second how do you do it?

thx in advance

Upvotes: 1

Views: 1554

Answers (1)

Christopher Painter
Christopher Painter

Reputation: 55601

Take a look at the ListReadFromFile function.

There is an example on that page. Basically you need to read the file into a list, iterate through the list and do string parsing to figure out the value of the key you care about.

Upvotes: 4

Related Questions