<?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 : How to get all CalendarViewEvents</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : How to get all CalendarViewEvents]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 28 May 2026 05:32:17 +0000</pubDate>
  <lastBuildDate>Wed, 28 Nov 2012 14:48:55 +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=19017</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[How to get all CalendarViewEvents : Did you get any reply or figured...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=69300&amp;title=how-to-get-all-calendarviewevents#69300</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5934">Narsi</a><br /><strong>Subject:</strong> 19017<br /><strong>Posted:</strong> 28 November 2012 at 2:48pm<br /><br />Did you get any reply or figured out how to do this? &nbsp;I'm kind of looking to do the same thing but did not find any method as of yet.]]>
   </description>
   <pubDate>Wed, 28 Nov 2012 14:48:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=69300&amp;title=how-to-get-all-calendarviewevents#69300</guid>
  </item> 
  <item>
   <title><![CDATA[How to get all CalendarViewEvents :    Hi how can i get a list...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=69120&amp;title=how-to-get-all-calendarviewevents#69120</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=7446">rahulcjain</a><br /><strong>Subject:</strong> 19017<br /><strong>Posted:</strong> 23 October 2012 at 8:46am<br /><br />Hi how can i get a list of upcoming events in listview or in &nbsp;grid.. how to get full year active view ??]]>
   </description>
   <pubDate>Tue, 23 Oct 2012 08:46:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=69120&amp;title=how-to-get-all-calendarviewevents#69120</guid>
  </item> 
  <item>
   <title><![CDATA[How to get all CalendarViewEvents : Thank you, meanwhile I use a simi&#195;&#182;ar...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=68299&amp;title=how-to-get-all-calendarviewevents#68299</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 19017<br /><strong>Posted:</strong> 19 May 2012 at 3:52am<br /><br /><p>Thank you, meanwhile I use a simiöar pricedure und it works fine.</p>]]>
   </description>
   <pubDate>Sat, 19 May 2012 03:52:17 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=68299&amp;title=how-to-get-all-calendarviewevents#68299</guid>
  </item> 
  <item>
   <title><![CDATA[How to get all CalendarViewEvents :   Hi,I know this question was...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=68271&amp;title=how-to-get-all-calendarviewevents#68271</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 19017<br /><strong>Posted:</strong> 17 May 2012 at 5:13am<br /><br />Hi,<br><br>I know this question was asked a while ago but there has been no response to this and I had the same question.<br><br>I found out by trial and error that I could get all events by doing the following:<br><br><table width="99%"><tr><td><pre class="BBcode">Dim calEvent As CalendarEvent, Days As Long<br>With CalendarControl<br>&nbsp;&nbsp;&nbsp; Days = .ActiveView.DaysCount<br>&nbsp;&nbsp;&nbsp; For Days = 0 To Days - 1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; For i = 0 To .ActiveView.Days(Days).MultipleResources(0).RetrieveDayEvents(.ActiveView.Days(Days).Date).Count - 1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set calEvent = .ActiveView.Days(Days).MultipleResources(0).RetrieveDayEvents(.ActiveView.Days(Days).Date).Event(i)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Debug.Print "Subject : " &amp; calEvent.Subject &amp; ", StartTime: " &amp; calEvent.StartTime &amp; ", EndTime: " &amp; calEvent.EndTime<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Next<br>&nbsp;&nbsp;&nbsp; Next<br>End With<br></pre></td></tr></table><br><br>This code gets the number of days depending on the selected ViewType i.e. Day, Week or Month then for each day it returns all the events for the ActiveView. <br>]]>
   </description>
   <pubDate>Thu, 17 May 2012 05:13:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=68271&amp;title=how-to-get-all-calendarviewevents#68271</guid>
  </item> 
  <item>
   <title><![CDATA[How to get all CalendarViewEvents : How can I get allCalendarViewEventsin...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=66498&amp;title=how-to-get-all-calendarviewevents#66498</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 19017<br /><strong>Posted:</strong> 05 October 2011 at 8:42am<br /><br />How can I get all&nbsp;CalendarViewEvents&nbsp;in the&nbsp;ActiveView and not only the&nbsp;SelectedEvents?]]>
   </description>
   <pubDate>Wed, 05 Oct 2011 08:42:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=19017&amp;PID=66498&amp;title=how-to-get-all-calendarviewevents#66498</guid>
  </item> 
 </channel>
</rss>