<?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 : Caldendar Resource</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Caldendar Resource]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 28 May 2026 10:33:12 +0000</pubDate>
  <lastBuildDate>Sun, 31 Oct 2010 21:22:53 +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=17428</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[Caldendar Resource : Hi ,Thanks you for the snippet...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17428&amp;PID=61209&amp;title=caldendar-resource#61209</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6040">cannones</a><br /><strong>Subject:</strong> 17428<br /><strong>Posted:</strong> 31 October 2010 at 9:22pm<br /><br />Hi ,<br><br>Thanks you for the snippet .. I actually do have the loading of standard events going. One of the issues I am having is when loading resources.<br><br>I used to use the dbi scheduling controls which in relation to understanding the codejock calendar control was like walking to the local shop rather than flying to the moon.&nbsp; <br><br>In my application I only want to display either a 7 day work week or a single day. In the single day view I display all the resources together with what appointment/events they have for that day.<br><br>When I switch to 7 day work week I want to display all the appointments/events for that week , but not have the resources appear in the calendar. <br><br>So what I need to know is how to I remove all the resources before changing the view type back to a 7 day work week..<br><br>I have tried to call the RemoveAll&nbsp; of the CalendarResourcesManager but the resources still appear..<br><br>What am I doing wrong ..<br><br>Sam<br>]]>
   </description>
   <pubDate>Sun, 31 Oct 2010 21:22:53 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17428&amp;PID=61209&amp;title=caldendar-resource#61209</guid>
  </item> 
  <item>
   <title><![CDATA[Caldendar Resource :        HiTo be honest you...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17428&amp;PID=60996&amp;title=caldendar-resource#60996</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2960">Xander75</a><br /><strong>Subject:</strong> 17428<br /><strong>Posted:</strong> 19 October 2010 at 5:41am<br /><br />Hi<br><br>To be honest you should be able to pick apart the code from the code examples, I do unserstand what you mean about this control as it's full of features and there's a lot to it. But you should be able to take what you need from the examples and anything else from this forum.<br><br>But here is some code on how I add events to the Calendar Control:<br><br><table width="99%"><tr><td><pre class="BBcode"><br>&nbsp;&nbsp;&nbsp; <font color="#000099">Dim </font>m_pEvent <font color="#000099">As </font>CalendarEvent<br><br>&nbsp;&nbsp;&nbsp; <font color="#006633">' Create a New event for the Calendar</font><br>&nbsp;&nbsp;&nbsp; <font color="#000099">Set </font>m_pEvent = CalendarControl.DataProvider.CreateEvent<br><br><font color="#006633">&nbsp;&nbsp;&nbsp; ' The following code will add an All Day Event which appears at the top of the Calendar for a given date.</font><br>&nbsp;&nbsp;&nbsp; <font color="#000099">With </font>m_pEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .StartTime = <font color="#006633">&lt;Start Date Time Goes Here&gt;</font><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .EndTime = <font color="#006633">&lt;End Date Time Goes Here&gt;</font><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .Subject = <font color="#006633">&lt;Subject Title Goes Here&gt;</font><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Body = <font color="#006633">&lt;Body Text </font><font color="#006633">Goes Here&gt;</font><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .AllDayEvent = <font color="#000099">True</font><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .Label = 10&nbsp;&nbsp;&nbsp; <font color="#006633">' Gives the Event a Colour... The colours are from 1 to 10</font><br>&nbsp;&nbsp;&nbsp; <font color="#000099">End With</font><br><br>&nbsp;&nbsp;&nbsp; CalendarControl.DataProvider.AddEvent m_pEvent<br><br>&nbsp;&nbsp;&nbsp; <font color="#006633">' Create a New event for the Calendar</font><br>&nbsp;&nbsp;&nbsp; <font color="#000099">Set </font>m_pEvent = CalendarControl.DataProvider.CreateEvent<br><br><font color="#006633">&nbsp;&nbsp;&nbsp; ' The following code will add an </font><font color="#006633">Event </font><font color="#006633">which appears </font><font color="#006633">in the Calendar</font><font color="#006633"> for a given date.</font><br>&nbsp;&nbsp;&nbsp; <font color="#000099">With </font>m_pEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .StartTime = <font color="#006633">&lt;Start Date Time Goes Here&gt;</font><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .EndTime = <font color="#006633">&lt;End Date Time Goes Here&gt;</font><br>&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp; .Subject = <font color="#006633">&lt;Subject Title Goes Here&gt;</font><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; .Body = <font color="#006633">&lt;Body </font><font color="#006633">Text </font><font color="#006633">Goes Here&gt;</font><br>&nbsp;&nbsp;&nbsp; <font color="#000099">End With</font><br><br>&nbsp;&nbsp;&nbsp; CalendarControl.DataProvider.AddEvent m_pEvent<font color="#006633"></font><br><br>&nbsp;&nbsp;&nbsp; <font color="#006633">' Notes:</font><br><font color="#006633">&nbsp;&nbsp;&nbsp; ' AllDayEvent defaults as false therefore is only required to add an AllDayEvent <br>&nbsp;&nbsp;&nbsp; ' You don't have to pass a Label Colour, it has a default colour if nothing is passed</font><br><font color="#006633">&nbsp;&nbsp;&nbsp; ' The m_pEvent variable used has many more useful events built in, but the above should give you the basics on how to add two types of events to the Calendar Control</font><br></pre></td></tr></table><br><br><img src="uploads/2960/CalendarColourCoded.png" height="746" width="936" border="0" /><br><br>I hope this helps.<br>]]>
   </description>
   <pubDate>Tue, 19 Oct 2010 05:41:38 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17428&amp;PID=60996&amp;title=caldendar-resource#60996</guid>
  </item> 
  <item>
   <title><![CDATA[Caldendar Resource : Hi All,Does anyone have any pseudo...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=17428&amp;PID=60896&amp;title=caldendar-resource#60896</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=6040">cannones</a><br /><strong>Subject:</strong> 17428<br /><strong>Posted:</strong> 14 October 2010 at 11:29am<br /><br />Hi All,<br><br>Does anyone have any pseudo code on how to add resources to a calendar. Essentially all I want to do is show a single date with columns of resource names then add any bookings they may have in the relevant resource column.<br><br>You practically require a GPS to navigate through this control. It needs to be explained in plain english together what steps are required ..<br><br>Regards,<br>Sam<br><br>]]>
   </description>
   <pubDate>Thu, 14 Oct 2010 11:29:22 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=17428&amp;PID=60896&amp;title=caldendar-resource#60896</guid>
  </item> 
 </channel>
</rss>