How do I get the "Job Title" field in Outlook to Link into Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi all...
I have linked my contacts from Outlook into an Access database but can not
get the field "Job Title" to go with it. It is not a mission critical field
but would be nice to have.
I was running Access 2000 and have updated the off line copy to 2003 but
still cannot get it to work. Tried linking a new table.
Any suggestions would be appreciated.
 
Hi Robak,

I've never got round to working out just what goes on between Access
and Outlook. What follows is a few years old and but things don't seem
to have changed much, and it may be helpful:

The "fields" you see in the usual Outlook forms are only indirectly
related to the actual
data stored wherever that particular installation of Outlook stores
it. For instance, for Contacts there are

1) the "fields" in the usual Contacts form, which are a subset of
2) the much wider set of "contact fields" available in the Outlook
Define Views dialog, which correspond more or less one-to-one to
3) the *properties* exposed by the Contact object in the Outlook
object model, which are *not* the same as
4) the actual data fields that are stored.

And then there are
(5) the fields that appear when you try and export from or link to the
Contacts folder.

As I understand it, just what appears in (5) is determined to some
extent by the current view of the folder, so you might try altering
the view and re-linking to Access. Otherwise, you can always get
pretty much what you want by using the Outlook object model via
Automation.

Here are some useful links:

Accessing Microsoft Exchange and Outlook Data Using Visual Basic
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnout98/html/olexcoutlk.asp

Sample Procedure to Link a Microsoft Outlook Folder
http://support.microsoft.com/?id=209946

How to programmatically export Outlook items to Access
http://support.microsoft.com/?id=290792
http://support.microsoft.com/?id=253794

OL2000: How to Programmatically Import Outlook Items from Microsoft
Access
http://support.microsoft.com/?id=208232

Using Automation in Microsoft Office Access 2003 to Work with
Microsoft Office Outlook 2003
http://msdn.microsoft.com/library/d...ry/en-us/dno2k3ta/html/odc_ac_olauto.asp?_r=1

Finally, the best places I know for information about Outlook are
http:www.outlookcode.com and http://www.slipstick.com
 
Thank you very much for that John,
I haven’t had a chance to put it into practice yet but feel very confidant
that the guidance you have given will more than adequately resolve my issues,
I will follow up next week when I have it sorted out, thank you again.
Robak :)
 
I never got the Job Title field to link from Outlook to Access but found
usable workaround buy using the code in the attached link. This has involved
a new "contacts" table in the data base and a button on the Outlook contacts
form that sends all of the contact details to the access table. Not perfect
but gets the job done. Its amazing what a can of worms such a small thing can
open!!!

http://www.helenfeddema.com/Files/code7.zip

Thanks again for your support...

Robak.
 
Thank you for the feedback.

I never got the Job Title field to link from Outlook to Access but found
usable workaround buy using the code in the attached link. This has involved
a new "contacts" table in the data base and a button on the Outlook contacts
form that sends all of the contact details to the access table. Not perfect
but gets the job done. Its amazing what a can of worms such a small thing can
open!!!

http://www.helenfeddema.com/Files/code7.zip

Thanks again for your support...

Robak.
 
Back
Top