Opening a Outlook Address Book through Javascript or Vb script language

J

jayanthv

Hello All,

I want to display outlook address book through Javascript or vbscrip
language? I have created a OCX(active-x component) and displayed in th
browser. But for this we need to change the browser security properties
As OCX as unsafe to run in browser it always prompts with a warnin
message.

Is there a way to get the local outlook address book from the loca
machine through scripting languages?

Please help me..
 
K

Ken Slovak - [MVP - Outlook]

You probably will have to implement the IObjectSafety and
olelib.IObjectWithSite interfaces that declare an object is safe for
scripting and safe for initialization. Then from there you would use normal
Outlook coding.

You can google for information about implementing those interfaces, or look
them up in the MSDN library. My code samples for that are in VB 6 code so I
don't think they would translate to how you can do it in jscript, if you
can.
 
Top