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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

field as hyperlink opens outlook 2000

Status
Not open for further replies.

wrmedia

Technical User
Jun 6, 2002
19
US
field contains email address - have made it a hyperlink but can't work out how to have it be an email link that just opens outlook 2000 with that email address

also input mask to make sure everything that goes into that field is in lower case

thanks
 
Dim olApp As New Outlook.Application
Dim olMail As Outlook.MailItem
Set olMail = olApp.CreateItem(olMailItem)

olMail.to = "you@yourcompany.com"
olMail.Display

---
I'm a bit rusty on my automation - but this SHOULD do the trick, maybe a couple of properties are wrong but it should get you started.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top