Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Javascript Question!!!

Status
Not open for further replies.

menace212

Programmer
Jul 11, 2003
144
US
I attempting to use javascript to access microsoft outlook address book...What can I use to access the address book then have the names the user chooses to pop into the email addresses into an email.Here's what I have so far..Please let me know if I'm on the right track...

<SCRIPT LANGUAGE="JavaScript">
<!--

function load(menu) {
if (window.dialogArguments && dialogArguments.location) {
dialogArguments.location.href = menu.options[menu.selectedIndex].value;
window.close();
}
}

// -->
</SCRIPT>

<FORM><SELECT NAME="menu">
<OPTION VALUE="C:\Documents and Settings\All Users\Start

Menu\Programs\Groupwise">Address Book
</SELECT>
<INPUT TYPE="button" VALUE="Load" onClick="load(this.form.menu)"></FORM>
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top