<?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 Retrieve Schedule from Calendar Cl</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : How to Retrieve Schedule from Calendar Cl]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Sat, 30 May 2026 08:21:08 +0000</pubDate>
  <lastBuildDate>Sat, 19 May 2007 13:51:31 +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=7183</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 Retrieve Schedule from Calendar Cl : ok, i am missing something...because...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23078&amp;title=how-to-retrieve-schedule-from-calendar-cl#23078</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3008">jetlounge</a><br /><strong>Subject:</strong> 7183<br /><strong>Posted:</strong> 19 May 2007 at 1:51pm<br /><br />ok, i am missing something...because that will only provide a schedid when an event exists (not .viewevent is nothing).<DIV>&nbsp;</DIV><DIV>But if i also click a cell and want to add a new event, and populate the add form with the schedid that was clicked, the valid of viewevent and viewgroup is nothing.</DIV><DIV>&nbsp;</DIV><DIV>so i need a way to determine what the schedule is even though an event does not yet exist.</DIV>]]>
   </description>
   <pubDate>Sat, 19 May 2007 13:51:31 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23078&amp;title=how-to-retrieve-schedule-from-calendar-cl#23078</guid>
  </item> 
  <item>
   <title><![CDATA[How to Retrieve Schedule from Calendar Cl : Well, no need to complicate. Those...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23075&amp;title=how-to-retrieve-schedule-from-calendar-cl#23075</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 7183<br /><strong>Posted:</strong> 19 May 2007 at 11:02am<br /><br />Well, no need to complicate. Those are different things.<br>-- HitTest determines a last click.<br>-- CalendarControl.ActiveView.Selection determines a selection of cells on the control. <br><br>If you'd like to determine an event by click -- look like it is done in our sample application:<br><table width="99%"><tr><td><pre class="BBcode"><br>Private Sub CalendarControl_DblClick()<br>&nbsp;&nbsp;&nbsp; Dim HitTest As CalendarHitTestInfo<br>&nbsp;&nbsp;&nbsp; Set HitTest = CalendarControl.ActiveView.HitTest<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; If Not HitTest.ViewEvent Is Nothing Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; MsgBox HitTest.ViewEvent.Event.ScheduleID<br>&nbsp;&nbsp;&nbsp; End If<br>End Sub<br><br></pre></td></tr></table><br><br>--<br>WBR, <br>Serge<br>]]>
   </description>
   <pubDate>Sat, 19 May 2007 11:02:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23075&amp;title=how-to-retrieve-schedule-from-calendar-cl#23075</guid>
  </item> 
  <item>
   <title><![CDATA[How to Retrieve Schedule from Calendar Cl : Thanks for the quick reply  That...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23074&amp;title=how-to-retrieve-schedule-from-calendar-cl#23074</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3008">jetlounge</a><br /><strong>Subject:</strong> 7183<br /><strong>Posted:</strong> 19 May 2007 at 10:46am<br /><br />Thanks for the quick reply<DIV>&nbsp;</DIV><DIV>That doesn't work for all situations, but i think it put me on the right track. Is it safe to assume the following:</DIV><DIV><BR>1) Click an&nbsp;EXISTING event in the calendar use:</DIV><DIV>HitTest.ViewGroup<BR>&nbsp;.MutlipleResources and further properties will get me to the actual SheduleID / Name</DIV><DIV><BR>2) Click for a NEW event from the calendar control use:</DIV><DIV>CalendarControl.ActiveView.Selection.GroupIndex</DIV><DIV>from there it looks like I need to cross-ref the array to determine the scheduleID and name&nbsp;&nbsp;</DIV>]]>
   </description>
   <pubDate>Sat, 19 May 2007 10:46:55 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23074&amp;title=how-to-retrieve-schedule-from-calendar-cl#23074</guid>
  </item> 
  <item>
   <title><![CDATA[How to Retrieve Schedule from Calendar Cl : Something like that: ?  Dim HitTest...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23068&amp;title=how-to-retrieve-schedule-from-calendar-cl#23068</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 7183<br /><strong>Posted:</strong> 19 May 2007 at 9:40am<br /><br />Something like that: <br>?<br><table width="99%"><tr><td><pre class="BBcode"><br>&nbsp;&nbsp;&nbsp; Dim HitTest As CalendarHitTestInfo<br>&nbsp;&nbsp;&nbsp; Set HitTest = Me.CalendarControl1.ActiveView.HitTest<br><br>&nbsp;&nbsp;&nbsp; HitTest.ViewGroup ' &lt;-- This is a schedule group<br></pre></td></tr></table><br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Sat, 19 May 2007 09:40:49 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23068&amp;title=how-to-retrieve-schedule-from-calendar-cl#23068</guid>
  </item> 
  <item>
   <title><![CDATA[How to Retrieve Schedule from Calendar Cl : I am using the control in an Access...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23067&amp;title=how-to-retrieve-schedule-from-calendar-cl#23067</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3008">jetlounge</a><br /><strong>Subject:</strong> 7183<br /><strong>Posted:</strong> 19 May 2007 at 9:30am<br /><br /><P>I am using the control in an Access form. Clicking the Calendar at a certain time I am able to retrieve all properties for that event (time/description, etc)</P><P>Is there a way to determine the Schedule that was clicked as well? I can't seem to find that property or sample code.</P>]]>
   </description>
   <pubDate>Sat, 19 May 2007 09:30:26 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=7183&amp;PID=23067&amp;title=how-to-retrieve-schedule-from-calendar-cl#23067</guid>
  </item> 
 </channel>
</rss>