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
- :
- Problems adding dialogs in OnFirstUIBefore with localized strings
Subscribe
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Subscribe
- Mute
- Printer Friendly Page
Feb 13, 2008
03:23 AM
Problems adding dialogs in OnFirstUIBefore with localized strings
I would need to add additional dialogs to the setup of my installscript MSI project. To do this, I am calling within the OnFirstUIBefore the needed dialog SdShowDlgEdit1 which works.
However, I would like to use localized strings for szTitle, szMsg and szField1.
So, I added an entry to the string table IDS_MYDLG_TITLESTRING in the string table and wanted to use it in the OnFirstUIBefore:
szTitle = SdLoadString (IDS_MYDLG_TITLESTRING);
SdShowDlgEdit1(szTitle, szMsg, szField1, svResult);
When compiling, I have the following error:
C8025: Setup.Rul(...): 'IDS_MYDLG_TITLESTRING': undefined identifier
What have I forgotten? Or how can I use additional localized strings in dialogs?
However, I would like to use localized strings for szTitle, szMsg and szField1.
So, I added an entry to the string table IDS_MYDLG_TITLESTRING in the string table and wanted to use it in the OnFirstUIBefore:
szTitle = SdLoadString (IDS_MYDLG_TITLESTRING);
SdShowDlgEdit1(szTitle, szMsg, szField1, svResult);
When compiling, I have the following error:
C8025: Setup.Rul(...): 'IDS_MYDLG_TITLESTRING': undefined identifier
What have I forgotten? Or how can I use additional localized strings in dialogs?
(1) Reply