<?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 : Select AllDay area by code?</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Select AllDay area by code?]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Tue, 12 May 2026 20:13:25 +0000</pubDate>
  <lastBuildDate>Mon, 04 Dec 2017 03:48: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=23141</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[Select AllDay area by code? :  Hi everyone,I&amp;#039;m using the...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=76362&amp;title=select-allday-area-by-code#76362</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=9220">Florent H.</a><br /><strong>Subject:</strong> 23141<br /><strong>Posted:</strong> 04 December 2017 at 3:48am<br /><br /><div>Hi everyone,</div><div><br></div><div>I'm using the calendar active X with Wonderware Indusoft.</div><div>I'm trying to select all the event for the full day week displayed on the screen but I cann't do it.</div><div><br></div><div>At the moment, the calender user can select all the event by using CTRL+click and then, he press on the copy button that I have added.</div><div>I would like to add a "Select all event" button.</div><div>Can you help me please ?</div><div><br></div><div>Thanks</div><div><br></div>]]>
   </description>
   <pubDate>Mon, 04 Dec 2017 03:48:37 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=76362&amp;title=select-allday-area-by-code#76362</guid>
  </item> 
  <item>
   <title><![CDATA[Select AllDay area by code? : I give up after two days fighting...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=75146&amp;title=select-allday-area-by-code#75146</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3743">Carlos Rocha</a><br /><strong>Subject:</strong> 23141<br /><strong>Posted:</strong> 25 September 2016 at 2:13pm<br /><br />I give up after two days fighting it.<br>Thanks for trying anyway<br>]]>
   </description>
   <pubDate>Sun, 25 Sep 2016 14:13:41 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=75146&amp;title=select-allday-area-by-code#75146</guid>
  </item> 
  <item>
   <title><![CDATA[Select AllDay area by code? : Thank you Oleksandr, but it does...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=75145&amp;title=select-allday-area-by-code#75145</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3743">Carlos Rocha</a><br /><strong>Subject:</strong> 23141<br /><strong>Posted:</strong> 25 September 2016 at 10:24am<br /><br />Thank you Oleksandr, but it does not work.<br><br>I should say that I don't use VB6, but I can work with OLE time.<br>I need this to allow full keyboard navigation within the calendar and this is the only thing I still couldn't put to work.<br><br>Setting <b>Begin = 2016-09-25 00:00:00</b> and <b>End = 2016-09-25 23:59:59</b>, and calling <b>CalendarControl.ActiveView.SetSelection Begin, End, True </b>moves the selection<b> </b>to the day before with a single the cell selected, <b>23:00:00 to 23:30:00.<br><br>EDIT: </b>by using Selection instead of SetSelection the selected cell is still 23:00 to 23:30 but the day doesn't change.<b><br></b>]]>
   </description>
   <pubDate>Sun, 25 Sep 2016 10:24:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=75145&amp;title=select-allday-area-by-code#75145</guid>
  </item> 
  <item>
   <title><![CDATA[Select AllDay area by code? : Hello Carlos,  Dim dateTimeBegin,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=75144&amp;title=select-allday-area-by-code#75144</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=8730">olebed</a><br /><strong>Subject:</strong> 23141<br /><strong>Posted:</strong> 25 September 2016 at 6:57am<br /><br />Hello Carlos,<br><br><table width="99%"><tr><td><pre class="BBcode">&nbsp; &nbsp;Dim dateTimeBegin, dateTimeEnd As Date<div>&nbsp; &nbsp;dateTimeBegin = #9/23/2016#</div><div>&nbsp; &nbsp;dateTimeEnd = #9/23/2016 11:59:59 PM#</div><div>&nbsp; &nbsp;</div><div>&nbsp; &nbsp;CalendarControl.ActiveView.Selection.Begin = dateTimeBegin</div><div>&nbsp; &nbsp;CalendarControl.ActiveView.Selection.End = dateTimeEnd</div><div>&nbsp; &nbsp;'or</div>&nbsp; &nbsp;CalendarControl.ActiveView.SetSelection dateTimeBegin, dateTimeEnd, True</pre></td></tr></table><br>Regards,<br>&nbsp;Oleksandr Lebed]]>
   </description>
   <pubDate>Sun, 25 Sep 2016 06:57:47 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=75144&amp;title=select-allday-area-by-code#75144</guid>
  </item> 
  <item>
   <title><![CDATA[Select AllDay area by code? : Hi,I couldn&amp;#039;t find a way...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=75142&amp;title=select-allday-area-by-code#75142</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3743">Carlos Rocha</a><br /><strong>Subject:</strong> 23141<br /><strong>Posted:</strong> 24 September 2016 at 5:01pm<br /><br />Hi,<br><br>I couldn't find a way so select AllDay area by code. Is it possible at all?<br><br>Thanks<br>]]>
   </description>
   <pubDate>Sat, 24 Sep 2016 17:01:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=23141&amp;PID=75142&amp;title=select-allday-area-by-code#75142</guid>
  </item> 
 </channel>
</rss>