<?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 : Date Picker Sample Problem?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Date Picker Sample Problem?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 03:52:02 +0000</pubDate>
  <lastBuildDate>Mon, 10 Apr 2006 16:30:46 +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=3960</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[Date Picker Sample Problem? : I implemented something similar...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12116&amp;title=date-picker-sample-problem#12116</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1670">John31</a><br /><strong>Subject:</strong> 3960<br /><strong>Posted:</strong> 10 April 2006 at 4:30pm<br /><br /><P>I implemented something similar to solve the problem after looking at various subclassing options.&nbsp;The paint of the drop down after a date is selected is very annoying.&nbsp; <strong>It makes the solution look like a hack rather and does not follow&nbsp;the professional style of all your other controls.</strong>&nbsp; </P><P>I would love to see you add a fully implemented Combo Box Date Picker as an optional control so that this type of paint issue does not occur.</P><P>Keep up the good work!</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Mon, 10 Apr 2006 16:30:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12116&amp;title=date-picker-sample-problem#12116</guid>
  </item> 
  <item>
   <title><![CDATA[Date Picker Sample Problem? :   The main idea is to restore...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12107&amp;title=date-picker-sample-problem#12107</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 3960<br /><strong>Posted:</strong> 10 April 2006 at 2:14pm<br /><br /><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">The main idea is to restore text after exit from cmbPopUp_DropDown</span><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">.</span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;"> </span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">To resolve this problem I add a timer object to the form: </span><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">popupTimer</span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">Disabled by default, Timeout = 10 ms.<br><table width="99%"><tr><td><pre class="BBcode"><br></span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;"> </span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 128, 0); : transparent;">'NEW code:</span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 128, 0); : transparent;">'------------------------------------------------</span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">Dim g_sDPpopUpCBValue As String</span><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;"> 'to store prev value of combobox</span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;"> </span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">Private Sub popupTimer_Timer()</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">&nbsp;&nbsp;&nbsp; popupTimer.Enabled = False</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">&nbsp;&nbsp;&nbsp; cmbPopUp.Text = g_sDPpopUpCBValue</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; g_sDPpopUpCBValue = "?-?-?"</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    </span><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">End Sub</span><br></div><div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 128, 0); : transparent;">'Changed code:</span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 128, 0); : transparent;">'------------------------------------------------</span></div></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">Private Sub cmbPopUp_DropDown()</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">     &nbsp;&nbsp;&nbsp; Dim bRestore As Boolean</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">                    </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">    &nbsp;&nbsp;&nbsp; 'get the current value of the combo box</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">    &nbsp;&nbsp;&nbsp; g_sDPpopUpCBValue = cmbPopUp.Text</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">    &nbsp;&nbsp;&nbsp; bRestore = False</span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;"> </span></div><div><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; If IsDate(cmbPopUp.Text) Then</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; wndDatePickerPopUp.EnsureVisible cmbPopUp.Text</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; End If</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; wndDatePickerPopUp.Left = cmbPopUp.Left</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; wndDatePickerPopUp.Top = cmbPopUp.Top + cmbPopUp.Height + 20</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; If wndDatePickerPopUp.ShowModal(1, 1) Then</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Dim strDate0 As String, strDate1 As String</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Dim nCount As Long</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">            </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; nCount = wndDatePickerPopUp.Selection.BlocksCount</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; If nCount &gt; 0 Then</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">            &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; cmbPopUp.Refresh</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">            &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; cmbPopUp.Text = wndDatePickerPopUp.Selection.Blocks(0).DateBegin</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">                                    </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">            &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strDate0 = wndDatePickerPopUp.Selection.Blocks(0).DateBegin</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">            &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; strDate1 = wndDatePickerPopUp.Selection.Blocks(nCount - 1).DateEnd</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">            </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">            &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; wndLabel_PopUp.Text = strDate0 &amp; " - " &amp; strDate1</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; Else</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">            &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; wndLabel_PopUp.Text = "-none-"</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">            &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; bRestore = True</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; End If</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; Else</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; wndLabel_PopUp.Text = "-ESC-"</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; bRestore = True</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; End If</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; PostMessage cmbPopUp.hwnd, CB_SHOWDROPDOWN, 0, 0</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">    &nbsp;&nbsp;&nbsp; cmbPopUp.Refresh</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">  </span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">    &nbsp;&nbsp;&nbsp; If bRestore Then</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; ' to restore the previous value of the combo</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">        &nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; popupTimer.Enabled = True</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent; font-weight: bold;">    &nbsp;&nbsp;&nbsp; End If</span><br><span style="font-family: 'Courier New'; font-size: 12px; color: rgb(0, 0, 0); : transparent;">End Sub</span></div></pre></td></tr></table><br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Mon, 10 Apr 2006 14:14:36 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12107&amp;title=date-picker-sample-problem#12107</guid>
  </item> 
  <item>
   <title><![CDATA[Date Picker Sample Problem? : I am aware of the logic used in...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12088&amp;title=date-picker-sample-problem#12088</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1670">John31</a><br /><strong>Subject:</strong> 3960<br /><strong>Posted:</strong> 10 April 2006 at 11:07am<br /><br /><P>I am aware of the logic used in the sample.&nbsp; However, take the following modification to the code which should allow for restoring the original value into the combo, but it does not work. The DatePicker is cause the value to be removed.&nbsp; If you step through the code it works fine, but when you run it with no breaks the value is not restored.&nbsp; </P><P>Private Sub cmbPopUp_DropDown()<BR>&nbsp;&nbsp;&nbsp; Dim sValue As String<BR>&nbsp;'&nbsp;&nbsp; Label1.Caption = "Pop-up:"<BR>&nbsp;<BR>&nbsp;&nbsp;&nbsp; ' get the current value of the combo box<BR>&nbsp;&nbsp;&nbsp; sValue = cmbPopUp.Text<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; If IsDate(cmbPopUp.Text) Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; 'wndDatePickerPopUp.SelectRange cmbPopUp.Text, cmbPopUp.Text<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wndDatePickerPopUp.EnsureVisible cmbPopUp.Text<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; wndDatePickerPopUp.Left = cmbPopUp.Left<BR>&nbsp;&nbsp;&nbsp; wndDatePickerPopUp.Top = cmbPopUp.Top + cmbPopUp.Height + 20<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp; If wndDatePickerPopUp.ShowModal(1, 1) Then<BR>&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim strDate0 As String, strDate1 As String<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim nCount As Long<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; nCount = wndDatePickerPopUp.Selection.BlocksCount<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If nCount &gt; 0 Then<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; cmbPopUp.Refresh<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; cmbPopUp.Text = wndDatePickerPopUp.Selection.Blocks(0).DateBegin<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; strDate0 = wndDatePickerPopUp.Selection.Blocks(0).DateBegin<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; strDate1 = wndDatePickerPopUp.Selection.Blocks(nCount - 1).DateEnd<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; <BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; wndLabel_PopUp.Text = strDate0 &amp; " - " &amp; strDate1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; wndLabel_PopUp.Text = "-none-"<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; ' restore the previous value of the combo<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp; cmbPopUp.Text = sValue<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; wndLabel_PopUp.Text = "-ESC-"<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ' restore the previous value of the combo<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; cmbPopUp.Text = sValue<BR>&nbsp;&nbsp;&nbsp; End If<BR>&nbsp;&nbsp;&nbsp; PostMessage cmbPopUp.hwnd, CB_SHOWDROPDOWN, 0, 0<BR>&nbsp;&nbsp;&nbsp; cmbPopUp.Refresh<BR>End Sub</P>]]>
   </description>
   <pubDate>Mon, 10 Apr 2006 11:07:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12088&amp;title=date-picker-sample-problem#12088</guid>
  </item> 
  <item>
   <title><![CDATA[Date Picker Sample Problem? : Hi John,It is a desired behavior....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12056&amp;title=date-picker-sample-problem#12056</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 3960<br /><strong>Posted:</strong> 08 April 2006 at 7:13am<br /><br />Hi John,<br><br>It is a desired behavior. If you look into cmbPopUp_DropDown() method, you can see that combo box text is set only if something was choosen inside the date picker. If there was an outside click, or Escape button pressed, ShowModal method returns False and combo text is cleared. You can change the sample logic in any way you'd like, just note that ShowModal returns True only if user has chosen some date and False if cancelled a popup.<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Sat, 08 Apr 2006 07:13:03 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12056&amp;title=date-picker-sample-problem#12056</guid>
  </item> 
  <item>
   <title><![CDATA[Date Picker Sample Problem? : In the DatePickerSample (VB6)...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12050&amp;title=date-picker-sample-problem#12050</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1670">John31</a><br /><strong>Subject:</strong> 3960<br /><strong>Posted:</strong> 07 April 2006 at 3:04pm<br /><br /><P>In the DatePickerSample (VB6) the behavior of the cmbPopUp seems wrong to me.&nbsp; Specifically, if there is a date in the combo box&nbsp; and you click the drop down button the date is displayed in the data picker. All good so far. If the user then clicks the drop down again the date picker closes and the value in the cmbPopUp is cleared.&nbsp; I have tried all sorts of stuff so that the value in the cmbPopUp remains the same as before but I cannot get it to work.&nbsp; Any ideas on how to make it retain the previous value?</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Fri, 07 Apr 2006 15:04:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=3960&amp;PID=12050&amp;title=date-picker-sample-problem#12050</guid>
  </item> 
 </channel>
</rss>