PDA

View Full Version : String Entry Not In String Table



Paul6151
08-18-2009, 10:46 PM
I have this bug IsDev: Warning -7174, which says:

"... contains a reference to a string table entry 'PRODUCT_RELEASE_DATE' that is not included in the project's string table."

'PRODUCT_RELEASE_DATE' is used in the a .rul file, something like this:

if (svResult < @PRODUCT_RELEASE_DATE) then
lStartPatch = FALSE;
endif;

got any idea how to fix this?

thanks a lot!

dhanasekar_dsb
08-18-2009, 11:47 PM
Hi ,

you are referring PRODUCT_RELEASE_DATE from the string table , But the entry in the string table is missing for this variable. You can add this variable in the string table by selecting the Installation Designer -> Installation Information -> General information - > Select the string table and the entry you are referring in the script .

Paul6151
08-19-2009, 02:15 AM
Ok.

From the General Information, i can not find where the String Table is... Is it a menu item? a property?

I am using InstallScript MSI Project (2010).

ericpaul
08-19-2009, 04:22 AM
You will not find it there in IS2010. The location that is mentioned is in IS2009 and earlier.

In IS2010 look for the strings in Installation Designer | User Interface | String Editor.

Eric-Paul

Paul6151
08-19-2009, 10:28 PM
Yes, I thought so.

I will enter this 'PRODUCT_RELEASE_DATE' as the string identifier.
How will i provide it with the value of the release date itself? I dont think this is done by providing a static value, right?


thanks.