boolean type resource strings |
Post Reply |
Author | |
tobi
Senior Member Joined: 09 September 2004 Location: Germany Status: Offline Points: 451 |
Post Options
Thanks(0)
Posted: 15 July 2005 at 10:32am |
I´ve just tested the suite´s resource override dll for the boolean property grid values and found that these are not translated in the german resource dll ( XTPResourceDe.dll ). The value for the id 9953 is True\nFalse and should be Ja\nNein.
After I´ve modified the resource dll to the correct values and tried it the initial boolean values are still in english, but the combo box contains the localised strings. Can it be that they are still hardcoded somewhere ? |
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Yes, sorry, there is bug in CXTPPropertyGridItemBool::_Init. please move SetBool in this member to the end.
void CXTPPropertyGridItemBool::_Init(BOOL bValue) CString strTrueFalse; SetBool(bValue); SetConstraintEdit(TRUE);
or manually call
pItem->SetTrueFalseText(_T("Ja"), _T("Nein")); |
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
tobi
Senior Member Joined: 09 September 2004 Location: Germany Status: Offline Points: 451 |
Post Options
Thanks(0)
|
(How) can I do this in the ActiveX edition ?
|
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
We will release 9.71 soon, with this fix.
|
|
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 |