<?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 : Invalid Procedure Call Office 2007 Theme</title>
  <link>http://forum.codejock.com/</link>
  <description><![CDATA[This is an XML content feed of; Codejock Developer Community : Calendar : Invalid Procedure Call Office 2007 Theme]]></description>
  <copyright>Copyright (c) 2006-2013 Web Wiz Forums - All Rights Reserved.</copyright>
  <pubDate>Wed, 13 May 2026 10:00:19 +0000</pubDate>
  <lastBuildDate>Tue, 24 Oct 2006 10:14:15 +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=5344</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[Invalid Procedure Call Office 2007 Theme : I was afraid you were going to...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5344&amp;PID=16769&amp;title=invalid-procedure-call-office-2007-theme#16769</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1790">jcollier</a><br /><strong>Subject:</strong> 5344<br /><strong>Posted:</strong> 24 October 2006 at 10:14am<br /><br />I was afraid you were going to say that.&nbsp; You were right.]]>
   </description>
   <pubDate>Tue, 24 Oct 2006 10:14:15 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5344&amp;PID=16769&amp;title=invalid-procedure-call-office-2007-theme#16769</guid>
  </item> 
  <item>
   <title><![CDATA[Invalid Procedure Call Office 2007 Theme : Looks like there is a problem...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5344&amp;PID=16753&amp;title=invalid-procedure-call-office-2007-theme#16753</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=862">sserge</a><br /><strong>Subject:</strong> 5344<br /><strong>Posted:</strong> 24 October 2006 at 3:49am<br /><br />Looks like there is a problem with components registration. Try reinstalling Calendar ActiveX.<br><br>Also you may probably have 2 references to different versions of the component. Select only one to be used.<br><br>--<br>WBR,<br>Serge<br>]]>
   </description>
   <pubDate>Tue, 24 Oct 2006 03:49:42 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5344&amp;PID=16753&amp;title=invalid-procedure-call-office-2007-theme#16753</guid>
  </item> 
  <item>
   <title><![CDATA[Invalid Procedure Call Office 2007 Theme : When I run the following code,...]]></title>
   <link>http://forum.codejock.com/forum_posts.asp?TID=5344&amp;PID=16742&amp;title=invalid-procedure-call-office-2007-theme#16742</link>
   <description>
    <![CDATA[<strong>Author:</strong> <a href="http://forum.codejock.com/member_profile.asp?PF=1790">jcollier</a><br /><strong>Subject:</strong> 5344<br /><strong>Posted:</strong> 23 October 2006 at 11:58am<br /><br />When I run the following code, which is straight from the sample project provided for Calendar 10.3.1 I get an error 5 "Invalid Procedure Call" <br><br>Private Sub mnuEnableTheme2007_Click()<br><br>&nbsp;&nbsp;&nbsp; Dim objThemeOfice2007 As CalendarThemeOffice2007<br>&nbsp;&nbsp;&nbsp; Set objThemeOfice2007 = CalendarControl.Theme<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; If objThemeOfice2007 Is Nothing Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Set objThemeOfice2007 = New CalendarThemeOffice2007<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br><font color="#00cc00"><b>'error occurs on the line below</b></font><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CalendarControl.SetTheme objThemeOfice2007<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&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; Dim pPX As New PropExchange<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If pPX.CreateAsXML(True, "CalendarThemeOffice2007") Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If pPX.LoadFromFile(App.Path &amp; "\cfgCalendarThemeOffice2007.xml") Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; frmMain.CalendarControl.Theme.DoPropExchange pPX<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; Else<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Unload frmTheme2007<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If mnuCustomIcons.Checked Then<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; mnuCustomIcons_Click<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; CalendarControl.SetTheme Nothing<br>&nbsp;&nbsp;&nbsp; End If<br>&nbsp;&nbsp;&nbsp; <br>&nbsp;&nbsp;&nbsp; CalendarControl.Populate<br>&nbsp;&nbsp;&nbsp; <br>End Sub<br>]]>
   </description>
   <pubDate>Mon, 23 Oct 2006 11:58:19 +0000</pubDate>
   <guid isPermaLink="true">http://forum.codejock.com/forum_posts.asp?TID=5344&amp;PID=16742&amp;title=invalid-procedure-call-office-2007-theme#16742</guid>
  </item> 
 </channel>
</rss>