Japanese Text Display |
Post Reply |
Author | |
shoe
Newbie Joined: 30 March 2006 Status: Offline Points: 1 |
Post Options
Thanks(0)
Posted: 30 March 2006 at 3:07am |
We have been receiving reports from one of our Japanese customers stating that the text within a property grid item is not displaying correctly on their machine (i.e. the CXTPPropertyGridItem''s ''Title''). Having verified that their Regional Settings are correct (Both system locale and non-unicode program settings are set to japanese), we are stuck!
Our software uses RC-Wintrans to internationalise strings, loading them into CStrings internally. We are using _MBCS, not _UNICODE, for all build stages. All of our menus and toolbars are translating correctly (using a different toolkit). We have tested this on development machines in the UK, and we cannot reproduce this problem, but it consistently happens for our japanese customer(s). Our japanese customer is running a japanese version of Windows XP Pro - we are running the English version. I have attached a screenshot showing the problem as it appears on the customer''s machine. To recap, I CANNOT reproduce this on my machine (japanese text is rendered fine). |
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Ok, lets think. We set font defined in Settings dialog by Icon Font: LOGFONT lfIcon;
so may be lfCharSet is not SHIFTJIS_CHARSET in customers computer Try to set font directly and set lfCharSet to SHIFTJIS_CHARSET :
LOGFONT lfIcon; lfIcon.lfCharSet = SHIFTJIS_CHARSET; CFont fntNormal; m_wndPropertyGrid.SetFont(&fntNormal);
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |