Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Read String Table


2 replies to this topic

tnand53

tnand53
  • Full Members
  • 23 posts

Posted 26 May 2009 - 13:46

How can we read the string table using vb script in installshield 11.

i tried "select value from ISSTRING where ISSTring='MESSAGE'". This is not working.

Edited by tnand53, 26 May 2009 - 13:47.


Stefan Krueger

Stefan Krueger

    InstallSite.org

  • Administrators
  • 13,269 posts

Posted 27 May 2009 - 09:22

Are you trying this with the .ism project file, or with the built .msi file? I don't think the string table is present in the .msi file. It is used to create the language transforms (.mst)

ramyaraj

ramyaraj
  • Full Members
  • 6 posts

Posted 27 May 2009 - 12:55

Try this query
SELECT `Value` FROM `ISString` WHERE (ISString.ISString='ID_STRING1') AND(ISString.ISLanguage_='1033')

The value of ISString.ISLanguage_ will be the language id for the language you want to read the value

Hope this helps! smile.gif

Regards,
Ramya