RE: VB - Retrieving contacts from Exchange Server

2002-07-03 Thread Sammy Rashid
- From: Jon Hill [mailto:[EMAIL PROTECTED]] Sent: 02 July 2002 17:01 To: Exchange Discussions Subject: RE: VB - Retrieving contacts from Exchange Server Your code used the Outlook Object Model, so the following code should work: Set olNS = ol.GetNamespace(MAPI) Set olGAL = olNS.AddressLists(Global

RE: VB - Retrieving contacts from Exchange Server

2002-07-03 Thread Sammy Rashid
sorry, justrealised a silly mistake!!! -Original Message- From: Jon Hill [mailto:[EMAIL PROTECTED]] Sent: 02 July 2002 17:01 To: Exchange Discussions Subject: RE: VB - Retrieving contacts from Exchange Server Your code used the Outlook Object Model, so the following code should work

RE: VB - Retrieving contacts from Exchange Server

2002-07-03 Thread DOT
I'm interested, what was the mistake and your fix for this. dot -Original Message- From: Sammy Rashid [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 5:17 AM To: Exchange Discussions Subject: RE: VB - Retrieving contacts from Exchange Server I am trying to use

RE: VB - Retrieving contacts from Exchange Server

2002-07-03 Thread Sammy Rashid
To: Exchange Discussions Subject: RE: VB - Retrieving contacts from Exchange Server I'm interested, what was the mistake and your fix for this. dot -Original Message- From: Sammy Rashid [SMTP:[EMAIL PROTECTED]] Sent: Wednesday, July 03, 2002 5:17 AM To: Exchange Discussions Subject: RE

RE: VB - Retrieving contacts from Exchange Server

2002-07-03 Thread Sammy Rashid
[mailto:[EMAIL PROTECTED]] Sent: 02 July 2002 17:01 To: Exchange Discussions Subject: RE: VB - Retrieving contacts from Exchange Server Your code used the Outlook Object Model, so the following code should work: Set olNS = ol.GetNamespace(MAPI) Set olGAL = olNS.AddressLists(Global Address List

RE: VB - Retrieving contacts from Exchange Server

2002-07-03 Thread Chris Jordan
You can't do it. Yes you can write code to get all your contacts [see below], but to get other peoples contacts you need one of two things: 1 - E-mail account name and NT Password for each and every account. 2 - Permissions set on each users account so that you can go and look at their e-mail.

Re: VB - Retrieving contacts from Exchange Server

2002-07-02 Thread Tony Hlabse
Which version of Exchange? - Original Message - From: sammy rashid [EMAIL PROTECTED] To: Exchange Discussions [EMAIL PROTECTED] Sent: Tuesday, July 02, 2002 5:12 AM Subject: VB - Retrieving contacts from Exchange Server I want to ue VB to retrieve retrieve all contacts from

RE: VB - Retrieving contacts from Exchange Server

2002-07-02 Thread Sammy Rashid
- Retrieving contacts from Exchange Server Which version of Exchange? - Original Message - From: sammy rashid [EMAIL PROTECTED] To: Exchange Discussions [EMAIL PROTECTED] Sent: Tuesday, July 02, 2002 5:12 AM Subject: VB - Retrieving contacts from Exchange Server I want to ue VB

Re: VB - Retrieving contacts from Exchange Server

2002-07-02 Thread Tony Hlabse
July 2002 14:37 To: Exchange Discussions Subject: Re: VB - Retrieving contacts from Exchange Server Which version of Exchange? - Original Message - From: sammy rashid [EMAIL PROTECTED] To: Exchange Discussions [EMAIL PROTECTED] Sent: Tuesday, July 02, 2002 5:12 AM Subject: VB - Retrieving

RE: VB - Retrieving contacts from Exchange Server

2002-07-02 Thread Sammy Rashid
DOes anybody know the VB to return the names of all mailboxes? -Original Message- From: Tony Hlabse [mailto:[EMAIL PROTECTED]] Sent: 02 July 2002 15:05 To: Exchange Discussions Subject: Re: VB - Retrieving contacts from Exchange Server Not sure. Maybe export all users name info using

RE: VB - Retrieving contacts from Exchange Server

2002-07-02 Thread Jon Hill
Your code used the Outlook Object Model, so the following code should work: Set olNS = ol.GetNamespace(MAPI) Set olGAL = olNS.AddressLists(Global Address List) For Each olThisBox In olGAL.AddressEntries If olThisBox.DisplayType = olUser Then Set mailbox =