This website uses cookies. By clicking Accept, you consent to the use of cookies. Click Here to learn more about how we use cookies.
Turn on suggestions
Auto-suggest helps you quickly narrow down your search results by suggesting possible matches as you type.
- Revenera Community
- :
- InstallShield
- :
- InstallShield Forum
- :
- ISDEV : error -7354 after upgrade from 2013 in Error table
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 08, 2016
11:36 AM
ISDEV : error -7354 after upgrade from 2013 in Error table
I upgraded my projects from 2013 to 2016, and now one of them is throwing the following error during compile:
ISDEV : error -7354: The Turkish: Türkçe value for string 'IDS_ERROR_2740' does not contain a legitimate value for table Error column Message
No error was thrown for 2013 and the string has not been modified. Additionally, all of our other languages (English, Spanish, Russian, Italian, Chinese (Simplified), German) compile without error.
I'm not sure how well it will come through, but here is the value for the string in question:
[2] özel eylemi [3] betik hatas?], [4]: [5] Sat?r [6], Sütun [7], [8].
ISDEV : error -7354: The Turkish: Türkçe value for string 'IDS_ERROR_2740' does not contain a legitimate value for table Error column Message
No error was thrown for 2013 and the string has not been modified. Additionally, all of our other languages (English, Spanish, Russian, Italian, Chinese (Simplified), German) compile without error.
I'm not sure how well it will come through, but here is the value for the string in question:
[2] özel eylemi [3] betik hatas?], [4]: [5] Sat?r [6], Sütun [7], [8].
(2) Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 08, 2016
02:47 PM
The error -7354 has been introduced to InstallShield 2016 as documented in the Localized String Considerations topic under the Project Upgrade Alerts section of InstallShield 2016 Release Notes. There seems to be no matching open bracket to the close bracket right after the question mark in your string. If you want to include a literal close bracket, you need to escape the character as follows:
[CODE][2] özel eylemi [3] betik hatas?[\]], [4]: [5] Sat?r [6], Sütun [7], [8]. [/CODE]
Hope that helps.
[CODE][2] özel eylemi [3] betik hatas?[\]], [4]: [5] Sat?r [6], Sütun [7], [8]. [/CODE]
Hope that helps.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
Sep 08, 2016
03:34 PM
Thank you Hidenori. Escaping the bracket fixed the issue.