<?xml version="1.0" encoding="utf-8" ?>
<?xml-stylesheet type="text/xsl" href="RSS_xslt_style.asp" version="1.0" ?>
<rss version="2.0" xmlns:WebWizForums="https://syndication.webwiz.net/rss_namespace/">
 <channel>
  <title>Codejock Developer Community : CXTPPropertyGridItemDate</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Property Grid : CXTPPropertyGridItemDate]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 06 Jun 2026 23:22:49 +0000</pubDate>
  <lastBuildDate>Mon, 19 Apr 2010 06:35:37 +0000</lastBuildDate>
  <docs>http://blogs.law.harvard.edu/tech/rss</docs>
  <generator>Web Wiz Forums 12.04</generator>
  <ttl>360</ttl>
  <WebWizForums:feedURL>forum.codejock.com/RSS_post_feed.asp?TID=16601</WebWizForums:feedURL>
  <image>
   <title><![CDATA[Codejock Developer Community]]></title>
   <url>http://forum.codejock.com/forum_images/codejock-logo.gif</url>
   <link>http://forum.codejock.com/</link>
  </image>
  <item>
   <title><![CDATA[CXTPPropertyGridItemDate : So, sources:   void CXTPPrope...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16601&amp;PID=58132&amp;title=cxtppropertygriditemdate#58132</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6044">restlessone</a><br /><strong>Subject:</strong> 16601<br /><strong>Posted:</strong> 19 April 2010 at 6:35am<br /><br />So, sources:<br /><table width="99%"><tr><td><pre class="BBcode"><br />void CXTPPropertyGridInplaceMonthCal::OnAccept()<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;SYSTEMTIME sysTime;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;::SendMessage(m_hWnd, MCM_GETCURSEL, 0, (LPARAM) &sysTime);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;sysTime.wHour = sysTime.wMinute = sysTime.wSecond = sysTime.wMilliseconds = 0;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;COleDateTime dtSelected(sysTime);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CString str = m_pItem-&gt;Format(dtSelected);<br /><font color=blue>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CString strBeforeEdit = str;</font><br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;CXTPPropertyGridItemDate* pItem = m_pItem;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;m_pItem = NULL;<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ShowWindow(SW_HIDE);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ReleaseCapture();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;PostMessage(WM_CLOSE);<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (pItem-&gt;OnAfterEdit(str))<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><font color=blue>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (strBeforeEdit == str) // Can changed in OnAfterEdit handler<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pItem-&gt;SetDate(dtSelected);<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;pItem-&gt;NotifyValueChanged();<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;else</font><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{<br /><font color=red>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pItem-&gt;OnValueChanged(str);</font><br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}<br />}<br /></pre></td></tr></table><br />Blue strings was added in 13.3.1 and now red string seems always unreachable. So it's bug ?<br /><br />Somebody can tell me, is there any other way to get more faster tech. support here ? Or i must wait for an answer for a weeks ? :)<br />]]>
   </description>
   <pubDate>Mon, 19 Apr 2010 06:35:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16601&amp;PID=58132&amp;title=cxtppropertygriditemdate#58132</guid>
  </item> 
  <item>
   <title><![CDATA[CXTPPropertyGridItemDate : Hello! With version of 13.0.0...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=16601&amp;PID=58099&amp;title=cxtppropertygriditemdate#58099</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6044">restlessone</a><br /><strong>Subject:</strong> 16601<br /><strong>Posted:</strong> 15 April 2010 at 10:13am<br /><br />Hello!<br />With version of 13.0.0 i used this code and got notification when user changed date by selecting it on dropdown calendar control and when user typed date manually too.<br /><table width="99%"><tr><td><pre class="BBcode"><br />class CUIPropertyDate : public CXTPPropertyGridItemDate<br />{<br />&nbsp;&nbsp;&nbsp;...<br />&nbsp;&nbsp;&nbsp;virtual void OnValueChanged(CString strValue)<br />&nbsp;&nbsp;&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;// want notification here!<br />&nbsp;&nbsp;&nbsp;}<br />};<br /></pre></td></tr></table><br />Now with version 13.3.1 i'm getting notification only when user typed date manually, but when user selecting it on calendar control - no more notification.<br /><br />Do i something wrong or it's a bug of new version ?<br />]]>
   </description>
   <pubDate>Thu, 15 Apr 2010 10:13:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=16601&amp;PID=58099&amp;title=cxtppropertygriditemdate#58099</guid>
  </item> 
 </channel>
</rss>