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
- :
- Issue with project migrated from IS 2010 to IS 2012
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
‎May 10, 2012
08:27 AM
Issue with project migrated from IS 2010 to IS 2012
Hello Everyone,
After migrating from IS 2010 to 2012 we are experiencing very strange issue. Old project contains block of code like:
if ( hWndStatus != NULL ) then
User32.SetDlgItemText( hWndStatus, 50, "");
User32.SetDlgItemText( hWndStatus, 710, "The Installshield wizard is installing application.");
User32.SetDlgItemText( hWndStatus, 1450, "The installation is about to begin..");
User32.InvalidateRect(hWndStatus, NULL, FALSE);
User32.UpdateWindow(hWndStatus);
endif;
After executing these lines of code text transforms to hieroglyphs (please review screenshot attached). This appears for every similar block of code.
Can anyone help me with this?
After migrating from IS 2010 to 2012 we are experiencing very strange issue. Old project contains block of code like:
if ( hWndStatus != NULL ) then
User32.SetDlgItemText( hWndStatus, 50, "");
User32.SetDlgItemText( hWndStatus, 710, "The Installshield wizard is installing application.");
User32.SetDlgItemText( hWndStatus, 1450, "The installation is about to begin..");
User32.InvalidateRect(hWndStatus, NULL, FALSE);
User32.UpdateWindow(hWndStatus);
endif;
After executing these lines of code text transforms to hieroglyphs (please review screenshot attached). This appears for every similar block of code.
Can anyone help me with this?
2 Replies
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 10, 2012
01:09 PM
It sounds like you haven't seen the migration documentation yet. In particular look for Changes to Win32 API Definitions and then look in your project for code you need to change between A and W, or STRING and WSTRING.
- Mark as New
- Subscribe
- Mute
- Permalink
- Report Inappropriate Content
‎May 11, 2012
03:14 AM
Thanks a lot, I will try soon.
