<?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 : Find out the actual event in timeline view</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Find out the actual event in timeline view]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 28 May 2026 17:53:06 +0000</pubDate>
  <lastBuildDate>Wed, 26 Aug 2009 05:18:12 +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=15039</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[Find out the actual event in timeline view : Hi,normaly I will give you are...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15039&amp;PID=52382&amp;title=find-out-the-actual-event-in-timeline-view#52382</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3430">Ditte</a><br /><strong>Subject:</strong> 15039<br /><strong>Posted:</strong> 26 August 2009 at 5:18am<br /><br />Hi,<br><br>normaly I will give you are right, but the user should only have a way to change the body, all other fields will generated from a other programpart<br>]]>
   </description>
   <pubDate>Wed, 26 Aug 2009 05:18:12 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15039&amp;PID=52382&amp;title=find-out-the-actual-event-in-timeline-view#52382</guid>
  </item> 
  <item>
   <title><![CDATA[Find out the actual event in timeline view : If you use build-in dialog - it...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15039&amp;PID=52373&amp;title=find-out-the-actual-event-in-timeline-view#52373</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=4721">mdoubson</a><br /><strong>Subject:</strong> 15039<br /><strong>Posted:</strong> 25 August 2009 at 4:40pm<br /><br />If you use build-in dialog - it will care about updates.]]>
   </description>
   <pubDate>Tue, 25 Aug 2009 16:40:32 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15039&amp;PID=52373&amp;title=find-out-the-actual-event-in-timeline-view#52373</guid>
  </item> 
  <item>
   <title><![CDATA[Find out the actual event in timeline view : Hi,I&#180;m use in the timeline view...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=15039&amp;PID=52351&amp;title=find-out-the-actual-event-in-timeline-view#52351</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=3430">Ditte</a><br /><strong>Subject:</strong> 15039<br /><strong>Posted:</strong> 25 August 2009 at 3:25am<br /><br />Hi,<br><br>I´m use in the timeline view (or calendar view) a own mask for changes of calendar data.<br>The use should only have a possibility to change some value.(only the body)<br>If I dblclick on a event I get the actual event and read all values in a struct. <br><br>&nbsp;&nbsp;&nbsp; Procedure start_edit_event tdEvent ByRef tEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Integer iviewtype<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Integer iHitCode<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Variant vViewEvent <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Variant vEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Handle&nbsp; hoViewEvent<br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Move (NullComObject()) to vViewEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //OLECalendarViewType<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //DayView=0;WorkWeekView=1;WeekView=2;MonthView=3;FullWeekView=4;TimeLineView=5 <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Get ComViewType of ghoCj_Calendar to iviewtype&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; //<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If (iviewtype eq 5) Begin<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Send GetHitCode to ghoCj_Calendar (&amp;vViewEvent) (&amp;iHitCode)<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If (not(IsNullComObject(vViewEvent))) Begin<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Get Create U_cComCalendarViewEvent to hoViewEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set pvComObject of hoViewEvent to vViewEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Get ComEvent of hoViewEvent to vEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Send Destroy of hoViewEvent<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Get Move_Event_Object_Data_To_tdEvent of ghoCj_Calendar&nbsp; vEvent to tEvent&nbsp; //read my custom data of the event in a struct<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End&nbsp; <br>&nbsp;&nbsp;&nbsp; End_Procedure<br><br>Now  I can put the values in the modalpanel.<br>The user can make the changes here.&nbsp; With ok the changes should be save in the event.<br><br>1. Now I can search in my database for the right record and save the changes. Now I must send refresh to the calendar.<br><br>2. or I find a way to find out the actual event (which a´ve choose), change the values there an make a refresh and save the value with CJ)<br>&nbsp;&nbsp; <br>The no.2 will be my favorite, but I found not the right event. Can me someone say which steps I must call to get what I want?<br><br><br><br>]]>
   </description>
   <pubDate>Tue, 25 Aug 2009 03:25:01 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=15039&amp;PID=52351&amp;title=find-out-the-actual-event-in-timeline-view#52351</guid>
  </item> 
 </channel>
</rss>