<?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 : SOLVED: CalendarEventCategory</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : SOLVED: CalendarEventCategory]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 28 May 2026 09:26:11 +0000</pubDate>
  <lastBuildDate>Mon, 14 Mar 2011 09:04:35 +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=18036</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[SOLVED: CalendarEventCategory : Yes, sorry you are right ! ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63295&amp;title=solved-calendareventcategory#63295</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 18036<br /><strong>Posted:</strong> 14 March 2011 at 9:04am<br /><br />Yes, sorry you are right !]]>
   </description>
   <pubDate>Mon, 14 Mar 2011 09:04:35 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63295&amp;title=solved-calendareventcategory#63295</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: CalendarEventCategory : The first part of the code I posted...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63293&amp;title=solved-calendareventcategory#63293</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 18036<br /><strong>Posted:</strong> 14 March 2011 at 8:44am<br /><br />The first part of the code I posted shows]]>
   </description>
   <pubDate>Mon, 14 Mar 2011 08:44:09 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63293&amp;title=solved-calendareventcategory#63293</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: CalendarEventCategory :  Thank you verry much again!How...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63270&amp;title=solved-calendareventcategory#63270</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 18036<br /><strong>Posted:</strong> 12 March 2011 at 4:34am<br /><br />Thank you verry much again!<div><br></div><div>How can I set an&nbsp;CalendarEventCategory to an CalendarEvent?</div><div><br></div><div><br></div>]]>
   </description>
   <pubDate>Sat, 12 Mar 2011 04:34:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63270&amp;title=solved-calendareventcategory#63270</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: CalendarEventCategory : By default Event ID&amp;#039;s 1-6...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63256&amp;title=solved-calendareventcategory#63256</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 18036<br /><strong>Posted:</strong> 11 March 2011 at 10:20am<br /><br />By default Event ID's 1-6 are already created yellow, blue, etc....&nbsp; So if you add them be sure to start with ID 7 or greter or delete the default ones.<DIV>&nbsp;</DIV><DIV>&nbsp;&nbsp;&nbsp; If m_bAddEvent Then<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.Categories.Add 7<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; m_pEditingEvent.Categories.Add 8<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frmInbox.wndCalendarControl.DataProvider.AddEvent m_pEditingEvent<BR>&nbsp;&nbsp;&nbsp; Else<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frmInbox.wndCalendarControl.DataProvider.ChangeEvent m_pEditingEvent<BR>&nbsp;&nbsp;&nbsp; End If</DIV><DIV>&nbsp;</DIV><DIV><DIV></DIV><DIV></DIV>Public Sub AddCategories()<BR>'IDs 1-6 are used for the default colors, 1 = Yellow....6 - Blue</DIV><P>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim EvCat As XtremeCalendarControl.CalendarEventCategory<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set EvCat = New CalendarEventCategory<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.Background = vbRed<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.BorderColor = vbGreen<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.Id = 1<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frmInbox.wndCalendarControl.DataProvider.EventCategories.Add EvCat<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set EvCat = New CalendarEventCategory<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.Background = vbBlue<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.BorderColor = vbGreen<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.Id = 2<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frmInbox.wndCalendarControl.DataProvider.EventCategories.Add EvCat<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set EvCat = New CalendarEventCategory<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.Background = vbYellow<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.BorderColor = vbGreen<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.Id = 3<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frmInbox.wndCalendarControl.DataProvider.EventCategories.Add EvCat<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set EvCat = New CalendarEventCategory<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.Background = vbGreen<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.BorderColor = vbBlue<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; EvCat.Id = 4<BR>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frmInbox.wndCalendarControl.DataProvider.EventCategories.Add EvCat<BR>End Sub<BR></P>]]>
   </description>
   <pubDate>Fri, 11 Mar 2011 10:20:28 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63256&amp;title=solved-calendareventcategory#63256</guid>
  </item> 
  <item>
   <title><![CDATA[SOLVED: CalendarEventCategory :  How can I add a newCalendarEventCategory?Dim...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63247&amp;title=solved-calendareventcategory#63247</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2660">McKloony</a><br /><strong>Subject:</strong> 18036<br /><strong>Posted:</strong> 11 March 2011 at 4:47am<br /><br />How can I <b>add </b>a new&nbsp;CalendarEventCategory?<div><br></div><div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Dim DaPro As XtremeCalendarControl.CalendarDataProvider</font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Dim EvCat As XtremeCalendarControl.CalendarEventCategory</font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Dim EvCas As XtremeCalendarControl.CalendarEventCategories</font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono"><br></font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Set FM = frmMain</font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Set CaCol = FM.calCont1</font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Set DaPro = CaCol.DataProvider</font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Set CaLbs = DaPro.LabelList</font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Set EvCas = DaPro.EventCategories</font></div></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono"><br></font></div><div><font ="apple-style-span"="" face="'Courier New', Courier, mono">Set&nbsp;EvCat =&nbsp;EvCas.Add(1)</font></div><div><br></div><div>does not work&nbsp;<img src="http://forum.codejock.com/smileys/smiley19.gif" border="0" alt="Cry" title="Cry" /></div>]]>
   </description>
   <pubDate>Fri, 11 Mar 2011 04:47:23 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=18036&amp;PID=63247&amp;title=solved-calendareventcategory#63247</guid>
  </item> 
 </channel>
</rss>