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
Joined
Jul 11, 2003
Messages
144
Location
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>
 
hahah!!! you beat me to it!!!

*cLFlaVA
----------------------------
[tt]I already made like infinity of those at scout camp...[/tt]
beware of active imagination: [URL unfurl="true"]http://www.coryarthus.com/[/url]

BillyRayPreachersSonIsTheLeetestHax0rDude
[banghead]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top