<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Integrating Access Contacts with SharePoint and Outlook</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx</link><description>There was a question on our post about getting Access to recognize tables as specific WSS table templates around what else you need to do to get the new Add From Outlook feature to work on a custom contacts table. This feature uses the same mechanism</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>re: Integrating Access Contacts with SharePoint and Outlook</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#4631506</link><pubDate>Wed, 29 Aug 2007 20:29:03 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4631506</guid><dc:creator>michelebkraus</dc:creator><description>&lt;p&gt;zac, I'm not a developer but I want to put my contacts that are in a Public folder currently into SharePoint. &amp;nbsp;I've spent several days exporting and importing data between Access and SharePoint and I'm not getting the data in the format I want. &amp;nbsp;I want all Outlook fields (title, categories, user1, etc) to be in SharePoint AND I want the list I've created to then be a &amp;quot;Conact&amp;quot; content type so I can 1) Add back to Outlook and 2) Add a new contact giving me all the fields to populate. &amp;nbsp;Is no one moving ALL their contact information to sharepoint????&lt;/p&gt;
</description></item><item><title>re: Integrating Access Contacts with SharePoint and Outlook</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#4633801</link><pubDate>Wed, 29 Aug 2007 23:45:46 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4633801</guid><dc:creator>Bill Forney</dc:creator><description>&lt;p&gt;I am getting:&lt;/p&gt;
&lt;p&gt;Run-time error '13':&lt;/p&gt;
&lt;p&gt;Type mismatch&lt;/p&gt;
&lt;p&gt;from this code... &amp;nbsp;Suggestions?&lt;/p&gt;
</description></item><item><title>re: Integrating Access Contacts with SharePoint and Outlook</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#4640540</link><pubDate>Thu, 30 Aug 2007 08:47:35 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4640540</guid><dc:creator>Tom Wickerath</dc:creator><description>&lt;p&gt;Hi Bill,&lt;/p&gt;
&lt;p&gt;Make the following change in the helper routine:&lt;/p&gt;
&lt;p&gt;Change:&lt;/p&gt;
&lt;p&gt;Dim p As Property&lt;/p&gt;
&lt;p&gt;To:&lt;/p&gt;
&lt;p&gt;Dim p As DAO.Property&lt;/p&gt;
&lt;p&gt;Also, make sure that you have a reference set to the DAO Object Library (Tools &amp;gt; References listing). As an alternative, you can deselect the checked reference to the ADO object library (&amp;quot;Microsoft ActiveX Data Objects {version} Library&amp;quot;), however, I recommend that you use the explicit declaration instead. This code suffers from a reference priority problem. To read more about this, please see the following article:&lt;/p&gt;
&lt;p&gt;ADO and DAO Library References in Access Databases&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://www.access.qbuilt.com/html/ado_and_dao.html"&gt;http://www.access.qbuilt.com/html/ado_and_dao.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;While you are at it, add Option Explicit as the second line of code at the top of the module, if this most important line of code is missing, ie:&lt;/p&gt;
&lt;p&gt;Option Compare Database&lt;/p&gt;
&lt;p&gt;Option Explicit&lt;/p&gt;
&lt;p&gt;and then add the following declaration in the Public Sub MakeContacts() subroutine:&lt;/p&gt;
&lt;p&gt;Dim strTable As String&lt;/p&gt;
&lt;p&gt;Dim fm As FieldMap&lt;/p&gt;
&lt;p&gt;Dim td As TableDef&lt;/p&gt;
&lt;p&gt;Dim db As Database&lt;/p&gt;
&lt;p&gt;Dim i As Integer &amp;nbsp; &amp;nbsp; &amp;nbsp; '&amp;lt;---Add this&lt;/p&gt;
&lt;p&gt;To read more about why Option Explicit is so important, please see the following article:&lt;/p&gt;
&lt;p&gt;Always Use Option Explicit&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a rel="nofollow" target="_new" href="http://www.access.qbuilt.com/html/gem_tips.html#VBEOptions"&gt;http://www.access.qbuilt.com/html/gem_tips.html#VBEOptions&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I don't have SharePoint set up to actually test this code, but I was able to duplicate the error you reported.&lt;/p&gt;
&lt;p&gt;Tom&lt;/p&gt;</description></item><item><title>re: Integrating Access Contacts with SharePoint and Outlook</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#4648448</link><pubDate>Thu, 30 Aug 2007 18:40:57 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4648448</guid><dc:creator>Zac Woodall</dc:creator><description>&lt;p&gt;Bill, are you using Option Explicit? &amp;nbsp;If so, you'll need to &amp;quot;Dim i as Integer&amp;quot; at the top of MakeContacts. &lt;/p&gt;
&lt;p&gt;Michele, you might be able to do it this way: &lt;/p&gt;
&lt;p&gt;1) import your Outlook contacts into Access using the Outlook/Exchange import wizard (External Data--&amp;gt;Import--&amp;gt;More--&amp;gt;Outlook Folder)&lt;/p&gt;
&lt;p&gt;2) run the code from this post on it (fixing up field names correctly)&lt;/p&gt;
&lt;p&gt;3) export the table from Access to Sharepoint&lt;/p&gt;
&lt;p&gt;4) go to the sharepoint list and choose open with outlook&lt;/p&gt;
&lt;p&gt;HTH!&lt;/p&gt;
</description></item><item><title>re: Integrating Access Contacts with SharePoint and Outlook</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#4649102</link><pubDate>Thu, 30 Aug 2007 19:20:37 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4649102</guid><dc:creator>Seth Bacon</dc:creator><description>&lt;p&gt;Thanks for the post! Great example code.&lt;/p&gt;
&lt;p&gt; - Seth&lt;/p&gt;
</description></item><item><title>re: Integrating Access Contacts with SharePoint and Outlook</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#4661289</link><pubDate>Fri, 31 Aug 2007 08:43:41 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4661289</guid><dc:creator>Tom Wickerath</dc:creator><description>&lt;p&gt;Hi Bill,&lt;/p&gt;
&lt;p&gt;I posted the following reply last night, but for some reason unknown to me, it did not show up. This is a second attempt.&lt;/p&gt;
&lt;p&gt;==============================&lt;/p&gt;
&lt;p&gt;Hi Bill,&lt;/p&gt;
&lt;p&gt;Make the following change in the helper routine:&lt;/p&gt;
&lt;p&gt;Change:&lt;/p&gt;
&lt;p&gt;Dim p As Property&lt;/p&gt;
&lt;p&gt;To:&lt;/p&gt;
&lt;p&gt;Dim p As DAO.Property&lt;/p&gt;
&lt;p&gt;Also, make sure that you have a reference set to the DAO Object Library (Tools &amp;gt; References listing). As an alternative, you can deselect the checked reference to the ADO object library (&amp;quot;Microsoft ActiveX Data Objects {version} Library&amp;quot;), however, I recommend that you use the explicit declaration instead. This code suffers from a reference priority problem. To read more about this, please see the following article:&lt;/p&gt;
&lt;p&gt;ADO and DAO Library References in Access Databases&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp;&lt;a rel="nofollow" target="_new" href="http://www.access.qbuilt.com/html/ado_and_dao.html"&gt;http://www.access.qbuilt.com/html/ado_and_dao.html&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;While you are at it, add Option Explicit as the second line of code at the top of the module, if this most important line of code is missing, ie:&lt;/p&gt;
&lt;p&gt;Option Compare Database&lt;/p&gt;
&lt;p&gt;Option Explicit&lt;/p&gt;
&lt;p&gt;and then add the following declaration in the Public Sub MakeContacts() subroutine:&lt;/p&gt;
&lt;p&gt;Dim strTable As String&lt;/p&gt;
&lt;p&gt;Dim fm As FieldMap&lt;/p&gt;
&lt;p&gt;Dim td As TableDef&lt;/p&gt;
&lt;p&gt;Dim db As Database&lt;/p&gt;
&lt;p&gt;Dim i As Integer &amp;nbsp; &amp;nbsp; &amp;nbsp; '&amp;lt;---Add this&lt;/p&gt;
&lt;p&gt;To read more about why Option Explicit is so important, please see the following article:&lt;/p&gt;
&lt;p&gt;Always Use Option Explicit&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &lt;a rel="nofollow" target="_new" href="http://www.access.qbuilt.com/html/gem_tips.html#VBEOptions"&gt;http://www.access.qbuilt.com/html/gem_tips.html#VBEOptions&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;I don't have SharePoint set up to actually test this code, but I was able to duplicate the error you reported.&lt;/p&gt;
&lt;p&gt;Tom&lt;/p&gt;</description></item><item><title>re: Integrating Access Contacts with SharePoint and Outlook</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#4668689</link><pubDate>Fri, 31 Aug 2007 15:11:26 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:4668689</guid><dc:creator>Lorenzo</dc:creator><description>&lt;p&gt;Well, good morning to all from italy&lt;/p&gt;
&lt;p&gt;My problem is this.&lt;/p&gt;
&lt;p&gt;With Outlook 2007 and BCM i want to import information in BCM from a database standard downloaded from OfficeOnline as Attivit&amp;#224;.accdb&lt;/p&gt;
&lt;p&gt;How i can make , if the SQL Express 2005 engine not recognize this format of database?&lt;/p&gt;
&lt;p&gt;thanks to all for the repaly and sorry for my bad english&lt;/p&gt;
&lt;p&gt;hi&lt;/p&gt;
</description></item><item><title>Nuevas vistas de informe en Access 2007</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#5394875</link><pubDate>Thu, 11 Oct 2007 01:09:07 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5394875</guid><dc:creator>Access</dc:creator><description>&lt;p&gt;Access 2007 a&amp;#241;ade dos nuevas vistas a los informes. Adem&amp;#225;s de la “Vista dise&amp;#241;o” y “Vista preli minar&lt;/p&gt;
</description></item><item><title>Cambiar las propiedades WSSTemplateID y WSSFieldID de una tabla y sus campos para hacerla compatible con Contactos de Outlook y Sharepoint.</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#5675908</link><pubDate>Thu, 25 Oct 2007 21:54:45 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:5675908</guid><dc:creator>Access</dc:creator><description>&lt;p&gt;Mirando en plantillas y ejemplos de Access 2007, nos encontramos en algunos formularios con opciones&lt;/p&gt;
</description></item><item><title>Contactos de Outlook en Access 2007</title><link>http://blogs.msdn.com/access/archive/2007/08/28/integrating-access-contacts-with-sharepoint-and-outlook.aspx#8363744</link><pubDate>Sun, 06 Apr 2008 23:12:00 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8363744</guid><dc:creator>Access</dc:creator><description>&lt;p&gt;Para que la Evas no tenga raz&amp;#243;n cuando nos achaca que nos prodigamos poco, copio aqu&amp;#237; el art&amp;#237;culo que&lt;/p&gt;
</description></item></channel></rss>