Create an Email?

crhodus

Registered User.
Local time
Today, 02:03
Joined
Mar 16, 2001
Messages
257
I have a field on my form that allows the user to enter an email address. Is there a way to launch their email program and create an email with this address whenever the user clicks on a button?

I tried changing the field to a hyperlink and using mailto:, but this didn't work. Also, we're using Novel GroupWise for email. I can't use Outlook.

Thanks
 
Last edited:
I dont know if this is effective but try this
Dim StrInput As String
StrInput = "mailto:" & Me![E-mail Address]
Application.FollowHyperlink StrInput, , True
 
Thanks

Just to say thanks GetReel for this bit of info - I used your programming to my use and it's worked :) :)
THANKS
 

Users who are viewing this thread

Back
Top Bottom