<?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 : Fullday recursive events fail</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Fullday recursive events fail]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Fri, 29 May 2026 22:36:41 +0000</pubDate>
  <lastBuildDate>Thu, 17 Jul 2008 07:46:51 +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=11073</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[Fullday recursive events fail : Im sorry to insist so much, but...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38501&amp;title=fullday-recursive-events-fail#38501</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4253">jortola</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 17 July 2008 at 7:46am<br /><br />Im sorry to insist so much, but I need to know if the problem has any solution or is a calendar failure...]]>
   </description>
   <pubDate>Thu, 17 Jul 2008 07:46:51 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38501&amp;title=fullday-recursive-events-fail#38501</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : No way. I&amp;#039;ve added the reminder...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38316&amp;title=fullday-recursive-events-fail#38316</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4253">jortola</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 14 July 2008 at 6:23am<br /><br />No way. I've added the reminder icon but It doesn't appear&nbsp;in the all-day events cell so the problem is still not solved.]]>
   </description>
   <pubDate>Mon, 14 Jul 2008 06:23:46 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38316&amp;title=fullday-recursive-events-fail#38316</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : Think he meant something like...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38238&amp;title=fullday-recursive-events-fail#38238</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=369">SuperMario</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 11 July 2008 at 10:49am<br /><br />Think he meant something like this:<br><br>Dim objThemeOfice2007 As CalendarThemeOffice2007<br>Set objThemeOfice2007 = CalendarControl.Theme<br><br>If objThemeOfice2007 Is Nothing Then Exit Sub<br><br>' add custom icons with special IDs to use them instead of standard<br>' see also PrePopulate event handler<br><br>objThemeOfice2007.CustomIcons.LoadBitmap App.Path &amp; "\Icons\Reminder.bmp", xtpCalendarEventIconIDReminder, xtpImageNormal<br>objThemeOfice2007.CustomIcons.LoadBitmap App.Path &amp; "\Icons\Occ.bmp", xtpCalendarEventIconIDOccurrence, xtpImageNormal<br>objThemeOfice2007.CustomIcons.LoadBitmap App.Path &amp; "\Icons\Exc.bmp", xtpCalendarEventIconIDException, xtpImageNormal<br>objThemeOfice2007.CustomIcons.LoadBitmap App.Path &amp; "\Icons\Private.bmp", xtpCalendarEventIconIDPrivate, xtpImageNormal<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br><br>Private Sub CalendarControl_PrePopulate(ByVal ViewGroup As XtremeCalendarControl.CalendarViewGroup, ByVal Events As XtremeCalendarControl.CalendarEvents)<br>&nbsp; <br>&nbsp;&nbsp;&nbsp; Dim pEvent As CalendarEvent<br>&nbsp;&nbsp;&nbsp; Dim strData As String<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; For Each pEvent In Events<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pEvent.CustomIcons.RemoveAll<br>&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; ' customize standard icons<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If pEvent.PrivateFlag Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pEvent.CustomIcons.Add xtpCalendarEventIconIDPrivate<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If pEvent.Reminder Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pEvent.CustomIcons.Add xtpCalendarEventIconIDReminder<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If pEvent.RecurrenceState = xtpCalendarRecurrenceOccurrence Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pEvent.CustomIcons.Add xtpCalendarEventIconIDOccurrence<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If pEvent.RecurrenceState = xtpCalendarRecurrenceException Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; pEvent.CustomIcons.Add xtpCalendarEventIconIDException<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; Next<br>End Sub<br>]]>
   </description>
   <pubDate>Fri, 11 Jul 2008 10:49:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38238&amp;title=fullday-recursive-events-fail#38238</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : Aha.. And how can I add the normal...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38230&amp;title=fullday-recursive-events-fail#38230</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4253">jortola</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 11 July 2008 at 7:59am<br /><br /><P>Aha.. And how can I add the normal theme&nbsp;reminder icon for the office <FONT color=#000000>theme? I've tryed:</FONT></P><FONT color=#008000 size=2><FONT color=#000000 size=2><P>((CalendarThemeOffice2007Class)wndCalendarControl.Theme).WeekView.Day.SingleDayEvent.EventIconsToDraw.ShowReminder = false;</P></FONT></FONT><FONT size=2><P></FONT><FONT size=2><FONT size=2>((CalendarThemeOffice2007Class)wndCalendarControl.Theme).WeekView.Event.EventIconsToDraw.ShowReminder = false;</P><DIV></DIV><P>With same results...</FONT></FONT></P>]]>
   </description>
   <pubDate>Fri, 11 Jul 2008 07:59:20 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38230&amp;title=fullday-recursive-events-fail#38230</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : In this state, try disabling Office...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38075&amp;title=fullday-recursive-events-fail#38075</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 09 July 2008 at 5:07pm<br /><br />In this state, try disabling Office 2007 theme - and you'll see that this empty space is used for drawing "reminder" icon. An appropriate icon doesn't exists in current Office 2007 theme -- that's the reason of the problem. It should be added, which will solve the issue.<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Wed, 09 Jul 2008 17:07:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=38075&amp;title=fullday-recursive-events-fail#38075</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : It seems to be a calendargeneric...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=37898&amp;title=fullday-recursive-events-fail#37898</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4253">jortola</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 07 July 2008 at 10:47am<br /><br />It seems to be a calendar&nbsp;generic failure, does codejock members plan to solve it?]]>
   </description>
   <pubDate>Mon, 07 Jul 2008 10:47:00 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=37898&amp;title=fullday-recursive-events-fail#37898</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : Here is a image showing the pr...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=37646&amp;title=fullday-recursive-events-fail#37646</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4253">jortola</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 01 July 2008 at 5:53am<br /><br />Here is a image showing the problem:<DIV>&nbsp;</DIV><DIV><a href="http://www.ngaro.es/tmp/calendar.png" target="_blank">http://www.ngaro.es/tmp/calendar.png</A>"></DIV>]]>
   </description>
   <pubDate>Tue, 01 Jul 2008 05:53:56 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=37646&amp;title=fullday-recursive-events-fail#37646</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : - Office XP theme - Recursive...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=37199&amp;title=fullday-recursive-events-fail#37199</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4253">jortola</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 23 June 2008 at 3:48am<br /><br /><P>- Office XP theme</P><DIV>- Recursive events fullday with reminders on</DIV><DIV>&nbsp;</DIV><DIV>- WeekView</DIV><DIV>&nbsp;</DIV><DIV>After fullday recursive event is added, just resize the&nbsp;window and you'll see that the event subject changes its size like {EVENT} {EVEN {E {E {E</DIV><DIV>for each day in weekview.</DIV><DIV>&nbsp;</DIV><DIV>Try it.. i've reproduced the failure also in the test app you provide as example.</DIV>]]>
   </description>
   <pubDate>Mon, 23 Jun 2008 03:48:29 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=37199&amp;title=fullday-recursive-events-fail#37199</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : Hi, Please explain steps to regenerate...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=37044&amp;title=fullday-recursive-events-fail#37044</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=2090">joeliner</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 19 June 2008 at 4:25pm<br /><br />Hi, <br><br>Please explain steps to regenerate the said problem.<br><br>cant see the events failure as explained.<br>]]>
   </description>
   <pubDate>Thu, 19 Jun 2008 16:25:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=37044&amp;title=fullday-recursive-events-fail#37044</guid>
  </item> 
  <item>
   <title><![CDATA[Fullday recursive events fail : When I add a recursive full-day...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=36859&amp;title=fullday-recursive-events-fail#36859</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4253">jortola</a><br /><strong>Subject:</strong> 11073<br /><strong>Posted:</strong> 17 June 2008 at 7:38am<br /><br />When I add a recursive full-day event and i change the view to week or workweek view the event shows like: <DIV>&nbsp;</DIV><DIV>{EVENT}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {EVE&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {E&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {E&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{E&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; {E&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;{E</DIV><DIV>&nbsp;</DIV><DIV>It seems that is filled each&nbsp;column with a non visible char, the 2nd colum with 1, the 3rd column with 2 chars and so...</DIV><DIV>&nbsp;</DIV><DIV>Any ideas about how to solve this problem?</DIV>]]>
   </description>
   <pubDate>Tue, 17 Jun 2008 07:38:25 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=11073&amp;PID=36859&amp;title=fullday-recursive-events-fail#36859</guid>
  </item> 
 </channel>
</rss>