Change from v11.1.3 to V14.0.0b
Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Toolkit Pro
Forum Description: Topics Related to Codejock Toolkit Pro
URL: http://forum.codejock.com/forum_posts.asp?TID=16173
Printed Date: 21 June 2025 at 2:44am Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com
Topic: Change from v11.1.3 to V14.0.0b
Posted By: jimmy
Subject: Change from v11.1.3 to V14.0.0b
Date Posted: 11 February 2010 at 8:49am
Hello,
Have a trouble after change version. Start old programversion. ok. start new programversion. ok. now i start the odl programversion. now all pane text have a quad char on end of text. any solution ?
Jimmy
|
Replies:
Posted By: jimmy
Date Posted: 22 February 2010 at 5:03am
See trouble in XTPDockingPaneLayout.cpp
Old version only save m_strTitle in "Title". And new version CString strTitle = m_strTitle + '\n' + m_strTabCaption + '\n' + m_strTitleToolTip; PX_String(pPX, _T("Title"), strTitle);
Wish a global compatible flag.
static CXTPDockingPane::bPropExchangeCompatible = FALSE;
if (CXTPDockingPane::bPropExchangeCompatible) { PX_String(pPX, _T("Title"), m_strTitle); PX_String(pPX, _T("TabCaption"), m_strTabCaption); PX_String(pPX, _T("TitleTooltip"), m_strTitleToolTip); } else { CString strTitle = m_strTitle + '\n' + m_strTabCaption + '\n' + m_strTitleToolTip; PX_String(pPX, _T("Title"), strTitle); }
Jimmy
|
Posted By: mgampi
Date Posted: 22 February 2010 at 5:09am
I believe a better solution would be a complete versioning schema because when in next release more is stored and you have to be compatible to more than two versions the flag solution isn't sufficient.
------------- Martin
Product: Xtreme Toolkit v 22.1.0, new Projects v 24.0.0 Platform: Windows 10 v 22H2 (64bit) Language: VC++ 2022
|
Posted By: jimmy
Date Posted: 22 February 2010 at 5:49am
Hi, Yes you are right, but the trouble is, that CJ make this not compatible. Why CJ has put Title,TabCaption,Tooltip into one String ?
Jimmy
|
Posted By: mgampi
Date Posted: 22 February 2010 at 6:06am
I can't answer this, but we can place a 'feature request' for release 14.x. An implementation is'nt very difficult but it enhances the usability a lot!
------------- Martin
Product: Xtreme Toolkit v 22.1.0, new Projects v 24.0.0 Platform: Windows 10 v 22H2 (64bit) Language: VC++ 2022
|
|