<?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 : Calendar Integration Plan - Feedback requested</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Calendar Integration Plan - Feedback requested]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Thu, 28 May 2026 18:51:23 +0000</pubDate>
  <lastBuildDate>Sat, 30 May 2009 15:40:06 +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=14199</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[Calendar Integration Plan - Feedback requested : pitronot, thanks for your feedback....]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14199&amp;PID=49510&amp;title=calendar-integration-plan-feedback-requested#49510</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1401">jpcoffeyXXX</a><br /><strong>Subject:</strong> 14199<br /><strong>Posted:</strong> 30 May 2009 at 3:40pm<br /><br />pitronot, thanks for your feedback.&nbsp; I have put more thought into it and have decided to go with the built-in Access data provider.&nbsp; I typically don't go with built-in anything, but I am so new to the calendar that I feel a lot safer in doing so.&nbsp; Once I get more experience I may decide to opt-in for more customization.&nbsp; I will state that so far, the integration has been very smooth and without mishaps.&nbsp; It is all moving so fast that I doubt I will deviate from the delivered functionality.<br><br>I appreciate your input on the MAPI as well, but I am still going to go with the built-in MAPI and the hidden calendar.&nbsp; It is a snap in solution that will work with as little customization as possible.&nbsp; I plan on adding a field to the Access DB indicating that the event is from Outlook.&nbsp; If the user wants to clear all of the Outlook events, it can be done if I run a query against the DB and then the user is back to normal.<br><br>Cheers,<br><br>John<br>]]>
   </description>
   <pubDate>Sat, 30 May 2009 15:40:06 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14199&amp;PID=49510&amp;title=calendar-integration-plan-feedback-requested#49510</guid>
  </item> 
  <item>
   <title><![CDATA[Calendar Integration Plan - Feedback requested : Disclaimer: ---first off I wish...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14199&amp;PID=49348&amp;title=calendar-integration-plan-feedback-requested#49348</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=5263">pitronot</a><br /><strong>Subject:</strong> 14199<br /><strong>Posted:</strong> 26 May 2009 at 4:00pm<br /><br /><P>Disclaimer:</P><P>---first off I wish to say, I am currently contemplating how to add this Calendar object to my app to. <BR>So take that into consideration when reading my reply.</P><P>The hidden CalendarControl will slow you down</P><P>why not MANUALLY run the MAPI dataProvider by yourself in your code.</P><P>connect to MAPI, and then in your customDataProvider have it reference the MAPI (if connected ofc) and add events.</P><P>have it retrieve new events from the MailServer&nbsp; - just need to run a Thread every so often that checks if new appointments were created in MAPI.</P><P>That's what you're invisible CalendarControl will do but be much more resource intensive.</P><P>&nbsp;</P><P>&nbsp;</P>]]>
   </description>
   <pubDate>Tue, 26 May 2009 16:00:52 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14199&amp;PID=49348&amp;title=calendar-integration-plan-feedback-requested#49348</guid>
  </item> 
  <item>
   <title><![CDATA[Calendar Integration Plan - Feedback requested : All, great forum. Looking for...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=14199&amp;PID=48559&amp;title=calendar-integration-plan-feedback-requested#48559</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1401">jpcoffeyXXX</a><br /><strong>Subject:</strong> 14199<br /><strong>Posted:</strong> 02 May 2009 at 10:32am<br /><br />All, great forum.&nbsp; Looking for a good reality check before I get started.<br><br>I am preparing to integrate the calendar control into my app and would really like to get some feedback on my plan to put this thing in place.&nbsp; I have an idea in mind on how I want to integrate it, but want to make sure my idea will work before trying to put it into place.<br><br>I am programming in VB 6.0 against an Access database.&nbsp; The Access DB will be the main, default database.&nbsp; My users may or may not have Outlook installed on their machines.&nbsp; If they do, I want to allow them to optionally synchronize with Outlook using the calendar's built-in MAPI data provider.&nbsp; The plan is as follows,<br><br><ul><li>Access will be my default database via a custom data provider.</li><li>If MS Outlook is installed, it will be connected to a 2nd hidden calendar via the MAPI interface.&nbsp; <i>This assumes MS Outlook is the default data provider.</i></li><li>Adds, Updates, Deletes on the default, visible calendar will be trapped using the DoCreateEvent, DoUpdateEvent, DoDeleteEvent will be updated programmatically in the Access DB and updated programmatically on the hidden calendar so that they show up on the Outlook calendar.&nbsp; </li><li>Additions/Updates/Deletes made in Outlook will automatically show up on the hidden calendar.&nbsp; By trapping the EventAddedEx, EventUpdatedEx, and EventDeletedEx these will be added programmatically to the Access database.</li></ul><br>Does anybody see any problem with what I am trying to accomplish?&nbsp; Is there a better way to do what I am trying to do?&nbsp; <br><br><br>In closing, there is no substitute for great code other than great planning.&nbsp; The calendar is very powerful with lots of options and I do not want to leverage the wrong facilities only to find out later that I had it all wrong.&nbsp; Any feedback you might be able to share would be very much appreciated.&nbsp; Thank you very much.<br><br>Sincerely,<br><br>John P. Coffey<br><br>&nbsp;&nbsp;&nbsp;&nbsp; <b>Product:</b> Xtreme SuitePro (ActiveX) version 13.0.0 <br>&nbsp;&nbsp;&nbsp;&nbsp; <b>Platform:</b> Windows XP (32bit) - SP 3 <br>&nbsp;&nbsp;&nbsp;&nbsp; <b>Language:</b> Visual Basic 6.0 <br><br>]]>
   </description>
   <pubDate>Sat, 02 May 2009 10:32:08 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=14199&amp;PID=48559&amp;title=calendar-integration-plan-feedback-requested#48559</guid>
  </item> 
 </channel>
</rss>