Incorrect function in CXTPPropertyGridItemDate |
Post Reply |
Author | |
mgampi
Senior Member Joined: 14 July 2003 Status: Offline Points: 1201 |
Post Options
Thanks(0)
Posted: 02 May 2008 at 7:54am |
Hi;
a few month ago I reported a incorrect functionality in CXTPPropertyGridItemDate::SetValue() (http://forum.codejock.com/forum_posts.asp?TID=6404). This failure is still present in 12.0 release (see red marked part):
void CXTPPropertyGridItemDate::SetValue(CString strValue)
{ COleDateTime dt; TRY { if (ParseDateTime(dt, strValue)) { SetDate(dt); } else if (dt.ParseDateTime(strValue, VAR_DATEVALUEONLY, LANG_RUSSIAN)) { SetDate(dt); } else if (!m_strNullValue.IsEmpty()) { COleDateTime dtNull; dtNull.SetStatus(COleDateTime::null); SetDate(dtNull);
} } CATCH(COleException, e) { }
END_CATCH } |
|
Martin Product: Xtreme Toolkit v 22.1.0, new Projects v 24.0.0 Platform: Windows 10 v 22H2 (64bit) Language: VC++ 2022 |
|
mgampi
Senior Member Joined: 14 July 2003 Status: Offline Points: 1201 |
Post Options
Thanks(0)
|
Hi;
and this fault got it also in version 12.0.1!!!! When will this be changed? |
|
Martin Product: Xtreme Toolkit v 22.1.0, new Projects v 24.0.0 Platform: Windows 10 v 22H2 (64bit) Language: VC++ 2022 |
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Thanks, changed for 12.0.2.
|
|
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 |