PC Review


Reply
Thread Tools Rate Thread

Can Outlook and Access be synchronized?

 
 
=?Utf-8?B?QmlsbEQ=?=
Guest
Posts: n/a
 
      2nd Apr 2007
Can Access be synchronized with Outlook? Can I use outlook from the access
membership database and bring up the members name for scheduling meetings etc.
 
Reply With Quote
 
 
 
 
Arvin Meyer [MVP]
Guest
Posts: n/a
 
      2nd Apr 2007
"BillD" <(E-Mail Removed)> wrote in message
news:506E1BF4-3506-4622-866F-(E-Mail Removed)...
> Can Access be synchronized with Outlook? Can I use outlook from the access
> membership database and bring up the members name for scheduling meetings
> etc.


Yes you can. You need to store the GUID identifier from Outlook in an Access
table (ExchangeEntryID) to sync them up. The code then looks something like
this:

Private Sub cmdOutlook_Click()
Dim olApp As Object
Dim nsMAPI As NameSpace
Dim MemberFolder As MAPIFolder
Dim i As Integer
Dim Company As Variant
Dim Member As Object
Dim EntryID As Variant

Set olApp = GetObject("", "Outlook.Application")
Set nsMAPI = olApp.GetNamespace("MAPI")
Set MemberFolder = nsMAPI.Folders("Public Folders").Folders("All Public
Folders").Folders("Members")
EntryID = DLookup("ExchangeEntryID", "tblMembers", "[MemberID] = '" &
Me.txtMemberID& "'")

If Not IsNull(EntryID) Then
Set Member = nsMAPI.GetItemFromID(EntryID, ContractorFolder.StoreID)
Member.Display
Else
MsgBox ("This Member is not available in the Members folder.")
End If
End Sub

If you go to one of the Outlook newsgroups, they should be able to direct
you to some code to fill the Access table from the Outlook Address book.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


 
Reply With Quote
 
dbahooker@hotmail.com
Guest
Posts: n/a
 
      2nd Apr 2007
Arvin should not be trusted; he believes that the only appropriate use
of Access is to use MDB / MDE files.

I mean.. that cry baby needs to lose the training wheels



On Apr 1, 8:28 pm, "Arvin Meyer [MVP]" <a...@m.com> wrote:
> "BillD" <B...@discussions.microsoft.com> wrote in message
>
> news:506E1BF4-3506-4622-866F-(E-Mail Removed)...
>
> > Can Access be synchronized with Outlook? Can I use outlook from the access
> > membership database and bring up the members name for scheduling meetings
> > etc.

>
> Yes you can. You need to store the GUID identifier from Outlook in an Access
> table (ExchangeEntryID) to sync them up. The code then looks something like
> this:
>
> Private Sub cmdOutlook_Click()
> Dim olApp As Object
> Dim nsMAPI As NameSpace
> Dim MemberFolder As MAPIFolder
> Dim i As Integer
> Dim Company As Variant
> Dim Member As Object
> Dim EntryID As Variant
>
> Set olApp = GetObject("", "Outlook.Application")
> Set nsMAPI = olApp.GetNamespace("MAPI")
> Set MemberFolder = nsMAPI.Folders("Public Folders").Folders("All Public
> Folders").Folders("Members")
> EntryID = DLookup("ExchangeEntryID", "tblMembers", "[MemberID] = '" &
> Me.txtMemberID& "'")
>
> If Not IsNull(EntryID) Then
> Set Member = nsMAPI.GetItemFromID(EntryID, ContractorFolder.StoreID)
> Member.Display
> Else
> MsgBox ("This Member is not available in the Members folder.")
> End If
> End Sub
>
> If you go to one of the Outlook newsgroups, they should be able to direct
> you to some code to fill the Access table from the Outlook Address book.
> --
> Arvin Meyer, MCP, MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmvp.com



 
Reply With Quote
 
=?Utf-8?B?QmlsbEQ=?=
Guest
Posts: n/a
 
      3rd Apr 2007
Thanks for the help. I know access but do not know programming code. I sent
your answer to my cousin who knows programming. He immediately said " that
looks interesting". He is interested in helping me synchronizing access and
outlook. appointments, emails etc.
Thanks again.
Bill Depow

"Arvin Meyer [MVP]" wrote:

> "BillD" <(E-Mail Removed)> wrote in message
> news:506E1BF4-3506-4622-866F-(E-Mail Removed)...
> > Can Access be synchronized with Outlook? Can I use outlook from the access
> > membership database and bring up the members name for scheduling meetings
> > etc.

>
> Yes you can. You need to store the GUID identifier from Outlook in an Access
> table (ExchangeEntryID) to sync them up. The code then looks something like
> this:
>
> Private Sub cmdOutlook_Click()
> Dim olApp As Object
> Dim nsMAPI As NameSpace
> Dim MemberFolder As MAPIFolder
> Dim i As Integer
> Dim Company As Variant
> Dim Member As Object
> Dim EntryID As Variant
>
> Set olApp = GetObject("", "Outlook.Application")
> Set nsMAPI = olApp.GetNamespace("MAPI")
> Set MemberFolder = nsMAPI.Folders("Public Folders").Folders("All Public
> Folders").Folders("Members")
> EntryID = DLookup("ExchangeEntryID", "tblMembers", "[MemberID] = '" &
> Me.txtMemberID& "'")
>
> If Not IsNull(EntryID) Then
> Set Member = nsMAPI.GetItemFromID(EntryID, ContractorFolder.StoreID)
> Member.Display
> Else
> MsgBox ("This Member is not available in the Members folder.")
> End If
> End Sub
>
> If you go to one of the Outlook newsgroups, they should be able to direct
> you to some code to fill the Access table from the Outlook Address book.
> --
> Arvin Meyer, MCP, MVP
> http://www.datastrat.com
> http://www.mvps.org/access
> http://www.accessmvp.com
>
>
>

 
Reply With Quote
 
Todos Menos [MSFT]
Guest
Posts: n/a
 
      3rd Apr 2007
dude move to ADP and use DTS or SSIS in order to get to your data

Arvin is a baby retarded programmer
don't listen to him or else you'll be stuck in the 1st grade with him,
making $12/hour




On Apr 1, 8:28 pm, "Arvin Meyer [MVP]" <a...@m.com> wrote:
> "BillD" <B...@discussions.microsoft.com> wrote in message
>
> news:506E1BF4-3506-4622-866F-(E-Mail Removed)...
>
> > Can Access be synchronized with Outlook? Can I use outlook from the access
> > membership database and bring up the members name for scheduling meetings
> > etc.

>
> Yes you can. You need to store the GUID identifier from Outlook in an Access
> table (ExchangeEntryID) to sync them up. The code then looks something like
> this:
>
> Private Sub cmdOutlook_Click()
> Dim olApp As Object
> Dim nsMAPI As NameSpace
> Dim MemberFolder As MAPIFolder
> Dim i As Integer
> Dim Company As Variant
> Dim Member As Object
> Dim EntryID As Variant
>
> Set olApp = GetObject("", "Outlook.Application")
> Set nsMAPI = olApp.GetNamespace("MAPI")
> Set MemberFolder = nsMAPI.Folders("Public Folders").Folders("All Public
> Folders").Folders("Members")
> EntryID = DLookup("ExchangeEntryID", "tblMembers", "[MemberID] = '" &
> Me.txtMemberID& "'")
>
> If Not IsNull(EntryID) Then
> Set Member = nsMAPI.GetItemFromID(EntryID, ContractorFolder.StoreID)
> Member.Display
> Else
> MsgBox ("This Member is not available in the Members folder.")
> End If
> End Sub
>
> If you go to one of the Outlook newsgroups, they should be able to direct
> you to some code to fill the Access table from the Outlook Address book.
> --
> Arvin Meyer, MCP, MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmvp.com



 
Reply With Quote
 
=?Utf-8?B?Q2hlZXNl?=
Guest
Posts: n/a
 
      21st Jun 2007
I spotted this entry for synchronizing Outlook and Access and I think that
this is what I would like to do as well. I have determined the Global Unique
ID for Outlook but I am confused as to how to set up the programming in a
table in Access. In the design of a table what data type should I use and
where would I insert the programming? Thanks! Cheese

"Arvin Meyer [MVP]" wrote:

> "BillD" <(E-Mail Removed)> wrote in message
> news:506E1BF4-3506-4622-866F-(E-Mail Removed)...
> > Can Access be synchronized with Outlook? Can I use outlook from the access
> > membership database and bring up the members name for scheduling meetings
> > etc.

>
> Yes you can. You need to store the GUID identifier from Outlook in an Access
> table (ExchangeEntryID) to sync them up. The code then looks something like
> this:
>
> Private Sub cmdOutlook_Click()
> Dim olApp As Object
> Dim nsMAPI As NameSpace
> Dim MemberFolder As MAPIFolder
> Dim i As Integer
> Dim Company As Variant
> Dim Member As Object
> Dim EntryID As Variant
>
> Set olApp = GetObject("", "Outlook.Application")
> Set nsMAPI = olApp.GetNamespace("MAPI")
> Set MemberFolder = nsMAPI.Folders("Public Folders").Folders("All Public
> Folders").Folders("Members")
> EntryID = DLookup("ExchangeEntryID", "tblMembers", "[MemberID] = '" &
> Me.txtMemberID& "'")
>
> If Not IsNull(EntryID) Then
> Set Member = nsMAPI.GetItemFromID(EntryID, ContractorFolder.StoreID)
> Member.Display
> Else
> MsgBox ("This Member is not available in the Members folder.")
> End If
> End Sub
>
> If you go to one of the Outlook newsgroups, they should be able to direct
> you to some code to fill the Access table from the Outlook Address book.
> --
> Arvin Meyer, MCP, MVP
> http://www.datastrat.com
> http://www.mvps.org/access
> http://www.accessmvp.com
>
>
>

 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
New To Access and having trouble with synchronized fields AnnieV Microsoft Access Forms 4 26th Jun 2007 09:56 AM
New To Access and having trouble with synchronized fields AnnieV Microsoft Access Getting Started 1 14th Jun 2007 12:20 AM
Can Outlook and Access be synchronized? =?Utf-8?B?QmlsbEQ=?= Microsoft Outlook Discussion 5 29th Apr 2007 02:14 PM
Are there PDA's that can be synchronized with Outlook? =?Utf-8?B?bGxhbWEyOA==?= Microsoft Access Getting Started 2 9th May 2006 05:52 PM
Wait for synchronized access Roger Down Microsoft C# .NET 9 15th Sep 2003 03:11 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 03:20 PM.