That probably means that your browser is set to use itself for email as a default instead of Outlook. If you're using IE, go to Tools, Internet Options, Programs and under E-Mail choose Microsoft Outlook.
Greenter,
If you want to send and email then you could use VBA in the event procedure for the text box where the email address is stored.
You need to incorporate something like this:
-----------------------------------------------------------
Private Sub txtYourTextBoxName_Click()
On Error GoTo Err_txtYourTextBoxName_Click
End Sub
-----------------------------------------------------------
This will take the value of 'txtYourTextBoxName' and send and email to that person using the users email program. FYI:You should set the textbox format in the table back to TEXT and format it to look like a hyperlink (blue underlined)in the form. The only drawback that I have found is that it doesn't display the 'hand pointer' that users are accustom to.
The send object does much more than send email. That is why there are so many commas. If you want to see the syntax for the command type [tt]DoCmd.SendObject[/tt]
Highlight the 'SendObject' part and press F1. This will also display some example information and all of the other neat things this does
Keeping track of all the blasted things that can be done is 99% of the battle!
Is this enough information?
JerseyBoy
Remember: self-praise is no recommendation
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.