![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
On my coorporate intranet I would like to publish a link that would launch
the address book (Outlook 2003 Address Book is configured to open the GAL, which is what I want)(Exchange 2000). I can not find an Outlook command line switch that will launch the address book, I can get the contacts list to launch via a command line switch, but this is not what I want. So, I was hoping someone might have a macro that would perform the task of launching Outlook with the Address book Open from a web page. -- marcia_mcmahon |
Ads |
#2
|
|||
|
|||
![]()
What features from the address book do you want users to be able to use after it's launched? The reason I ask is that Microsoft provides a separate ActiveX address book control for use in web pages ( C:\Program Files\Microsoft Office\OFFICE11\MSOSVABW.DLL, invoked with CreateObject(MsSvAbw.AddrBookWrapper), but it has limited functionality.
-- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "marcia_mcmahon" wrote in message ... On my coorporate intranet I would like to publish a link that would launch the address book (Outlook 2003 Address Book is configured to open the GAL, which is what I want)(Exchange 2000). I can not find an Outlook command line switch that will launch the address book, I can get the contacts list to launch via a command line switch, but this is not what I want. So, I was hoping someone might have a macro that would perform the task of launching Outlook with the Address book Open from a web page. -- marcia_mcmahon |
#3
|
|||
|
|||
![]()
I want them to use the link as an online telephone directory to replace
printed directories available on our intranet. They look up telephone numbers from GAL, not from their personal contacts. Ideally, with the same "look and feel" of the Outlook address book. Display to include, Display name phone number and Office. I admit I am not a code guru. Any help is appreciated. -- marcia_mcmahon "Sue Mosher [MVP-Outlook]" wrote: What features from the address book do you want users to be able to use after it's launched? The reason I ask is that Microsoft provides a separate ActiveX address book control for use in web pages ( C:\Program Files\Microsoft Office\OFFICE11\MSOSVABW.DLL, invoked with CreateObject(MsSvAbw.AddrBookWrapper), but it has limited functionality. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "marcia_mcmahon" wrote in message ... On my coorporate intranet I would like to publish a link that would launch the address book (Outlook 2003 Address Book is configured to open the GAL, which is what I want)(Exchange 2000). I can not find an Outlook command line switch that will launch the address book, I can get the contacts list to launch via a command line switch, but this is not what I want. So, I was hoping someone might have a macro that would perform the task of launching Outlook with the Address book Open from a web page. -- marcia_mcmahon |
#4
|
|||
|
|||
![]()
Now, I'm confused. It sounds like you don't want to launch the Outlook Address Book, but something with the "look and feel" of the Outlook address book. But why you'd want to do that is baffling, because the UI for looking up phone numbers is not great (which sort of makes sense given that it was never intended to be a phone directory).
What I'd probably do is use ADSI (see http://www.outlookcode.com/d/adsi.htm) to create a custom phone directory as a web page. That way, it will work regardless of whether the user has Outlook running. In the meantime, if you want to show the address book despite its limitations, see http://www.outlookcode.com/d/code/selectnames.htm for sample code that shows how to display it using CDO. Code like this will, however, run into security prompts for the users. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "marcia_mcmahon" wrote in message ... I want them to use the link as an online telephone directory to replace printed directories available on our intranet. They look up telephone numbers from GAL, not from their personal contacts. Ideally, with the same "look and feel" of the Outlook address book. Display to include, Display name phone number and Office. I admit I am not a code guru. Any help is appreciated. -- marcia_mcmahon "Sue Mosher [MVP-Outlook]" wrote: What features from the address book do you want users to be able to use after it's launched? The reason I ask is that Microsoft provides a separate ActiveX address book control for use in web pages ( C:\Program Files\Microsoft Office\OFFICE11\MSOSVABW.DLL, invoked with CreateObject(MsSvAbw.AddrBookWrapper), but it has limited functionality. "marcia_mcmahon" wrote in message ... On my coorporate intranet I would like to publish a link that would launch the address book (Outlook 2003 Address Book is configured to open the GAL, which is what I want)(Exchange 2000). I can not find an Outlook command line switch that will launch the address book, I can get the contacts list to launch via a command line switch, but this is not what I want. So, I was hoping someone might have a macro that would perform the task of launching Outlook with the Address book Open from a web page. |
#5
|
|||
|
|||
![]()
Sue,
Sorry to add confusion. I really want to lauch the address book. Regardless of my baffling reasoning. I'll try your suggestions. -- marcia_mcmahon "Sue Mosher [MVP-Outlook]" wrote: Now, I'm confused. It sounds like you don't want to launch the Outlook Address Book, but something with the "look and feel" of the Outlook address book. But why you'd want to do that is baffling, because the UI for looking up phone numbers is not great (which sort of makes sense given that it was never intended to be a phone directory). What I'd probably do is use ADSI (see http://www.outlookcode.com/d/adsi.htm) to create a custom phone directory as a web page. That way, it will work regardless of whether the user has Outlook running. In the meantime, if you want to show the address book despite its limitations, see http://www.outlookcode.com/d/code/selectnames.htm for sample code that shows how to display it using CDO. Code like this will, however, run into security prompts for the users. -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "marcia_mcmahon" wrote in message ... I want them to use the link as an online telephone directory to replace printed directories available on our intranet. They look up telephone numbers from GAL, not from their personal contacts. Ideally, with the same "look and feel" of the Outlook address book. Display to include, Display name phone number and Office. I admit I am not a code guru. Any help is appreciated. -- marcia_mcmahon "Sue Mosher [MVP-Outlook]" wrote: What features from the address book do you want users to be able to use after it's launched? The reason I ask is that Microsoft provides a separate ActiveX address book control for use in web pages ( C:\Program Files\Microsoft Office\OFFICE11\MSOSVABW.DLL, invoked with CreateObject(MsSvAbw.AddrBookWrapper), but it has limited functionality. "marcia_mcmahon" wrote in message ... On my coorporate intranet I would like to publish a link that would launch the address book (Outlook 2003 Address Book is configured to open the GAL, which is what I want)(Exchange 2000). I can not find an Outlook command line switch that will launch the address book, I can get the contacts list to launch via a command line switch, but this is not what I want. So, I was hoping someone might have a macro that would perform the task of launching Outlook with the Address book Open from a web page. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
automatic copy of address into address book from messages receive | zip14 | Outlook - Using Contacts | 1 | February 23rd 06 03:30 PM |
How do I export my Comcast address book to Outlook address book? | jciccone | Outlook - Using Contacts | 1 | February 8th 06 05:21 PM |
Outlook 2002 Uses email address not in Contacts or Address book | Pagen | Outlook - Using Contacts | 1 | February 1st 06 06:11 PM |
Send a Group Address list from my address book to another e-mail | Alan George | Outlook - Using Contacts | 1 | January 24th 06 09:42 PM |
Address book program with CRM features to replace Outlook/Express contact book | [email protected] | Outlook - Using Contacts | 0 | January 11th 06 12:36 AM |