Importing from Outlook user defined fields on a form

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

Guest

Hi, I have created a form with my own defined fields but cannot find a way to
drag them into access, all others work I just do not know how to refernce
correctly. Any help greatly appreciated

dave
 
What do you mean by 'drag them into Access'? Are you opening up an
Outlook Item in memory using VBA and trying to get the information into
Access? Do you setup a linked table to your Outlook personal folders and
you want to see the user defined fields?

FYI - The user defined fields are a part of the UserProperties
collection and are case sensitive. As in
Item.UserProperties("dbAccessID") returns the value in the user defined
field "dbAccessID". "dbAccessId" would return an error due to the lower
case 'd'. The specific answer to your question depends on the
information above.
 
Back
Top