<?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 : Max All Day Events</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Max All Day Events]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 07:58:52 +0000</pubDate>
  <lastBuildDate>Thu, 31 Aug 2006 15:02:40 +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=4904</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[Max All Day Events : Serge -   THANKS!  Matt ]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4904&amp;PID=15381&amp;title=max-all-day-events#15381</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1737">Matt</a><br /><strong>Subject:</strong> 4904<br /><strong>Posted:</strong> 31 August 2006 at 3:02pm<br /><br />Serge -<DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>THANKS!</DIV><DIV>&nbsp;</DIV><DIV>Matt</DIV>]]>
   </description>
   <pubDate>Thu, 31 Aug 2006 15:02:40 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4904&amp;PID=15381&amp;title=max-all-day-events#15381</guid>
  </item> 
  <item>
   <title><![CDATA[Max All Day Events : Hi Matt,You can use PrePopulate...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4904&amp;PID=15333&amp;title=max-all-day-events#15333</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 4904<br /><strong>Posted:</strong> 30 August 2006 at 11:36am<br /><br />Hi Matt,<br><br>You can use PrePopulate notification to organize AllDayEvents scrolling.<br>I've played with that by adding 2 buttons 'Up', 'Down' on my form. <br>Ther idea is following (as VB code): <br><table width="99%"><tr><td><pre class="BBcode"><br>Public g_nTopAllDayEvent As Long<br>&nbsp;<br>Private Sub Form_Initialize()<br>&nbsp;&nbsp;&nbsp; g_nTopAllDayEvent = 0<br>End Sub<br>Private Sub CalendarControl_PrePopulate( _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ByVal ViewGroup As XtremeCalendarControl.CalendarViewGroup, _<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; ByVal Events As XtremeCalendarControl.CalendarEvents)<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Dim i As Long<br>&nbsp;&nbsp;&nbsp; Dim arIndexesToRemove As New Collection<br>&nbsp;&nbsp;&nbsp; Dim pEvent As CalendarEvent<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; For i = 0 To Events.Count - 1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set pEvent = Events(i)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If pEvent.AllDayEvent And arIndexesToRemove.Count &lt; g_nTopAllDayEvent Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; arIndexesToRemove.Add i<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; Next<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; For i = arIndexesToRemove.Count To 1 Step -1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Events.Remove arIndexesToRemove(i)<br>&nbsp;&nbsp;&nbsp; Next<br>End Sub<br>&nbsp;<br>Private Sub cmdADEDown_Click()<br>&nbsp;&nbsp;&nbsp; g_nTopAllDayEvent = g_nTopAllDayEvent + 1<br>&nbsp;&nbsp;&nbsp; CalendarControl.Populate<br>End Sub<br>&nbsp;<br>Private Sub cmdADEUp_Click()<br>&nbsp;&nbsp;&nbsp; If g_nTopAllDayEvent &gt; 0 Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; g_nTopAllDayEvent = g_nTopAllDayEvent - 1<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CalendarControl.Populate<br>&nbsp;&nbsp;&nbsp; End If<br>End Sub <br></pre></td></tr></table><br><br>ps: we'll consider for future adding a property like DayViewAllDayEventsMaxHeightPercent which is now 50%.<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Wed, 30 Aug 2006 11:36:24 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4904&amp;PID=15333&amp;title=max-all-day-events#15333</guid>
  </item> 
  <item>
   <title><![CDATA[Max All Day Events : Hello -  Can you offer any tips...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=4904&amp;PID=15278&amp;title=max-all-day-events#15278</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1737">Matt</a><br /><strong>Subject:</strong> 4904<br /><strong>Posted:</strong> 28 August 2006 at 1:17pm<br /><br />Hello -<DIV>&nbsp;</DIV><DIV>Can you offer any tips for how to handle a situation where the number of all day events exceeds the space available to display them in dayview mode?</DIV><DIV>&nbsp;</DIV><DIV>Sorry if my question isn't clear.... basically my app centers around all day type events, and when switching into dayview mode, not all of them are being displayed, and I can't seem to find a way to scroll them.</DIV><DIV>&nbsp;</DIV><DIV>Thanks</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV><DIV>&nbsp;</DIV>]]>
   </description>
   <pubDate>Mon, 28 Aug 2006 13:17:58 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=4904&amp;PID=15278&amp;title=max-all-day-events#15278</guid>
  </item> 
 </channel>
</rss>