Rockape
Registered User.
- Local time
- Today, 06:18
- Joined
- Aug 24, 2007
- Messages
- 271
Hi all,
Hope someone can help. Please bear with me....
The problem:
I have a table that includes email addresses. This is formatted as type as Hyperlink. Within that table I also have names and other details.
The form I'm working on selects a name from a list and the details appear on the side in unbounded boxes. (No problems so far!)
Problem 1 : the output in the email address appears as double i.e. qwerty@blip.dn#qwerty@blip.dn#
Problem 2: I have a send email button which opens outlook express and mails to the above erroneous email using the following code
Private Sub cmd_sendemail_Click()
On Error GoTo Err_sendemail
If IsNull(Me.txt_email) Then
MsgBox "This person has no email", , "Email Out"
Else
DoCmd.SendObject , , , (Me.txt_email)
End If
Exit_sendemail_Click:
Exit Sub
Err_sendemail:
MsgBox Err.Description
Resume Exit_sendemail_Click
End Sub
Is there anyway that the correct email address can be realised.
Problem 3: When outlook express starts and I decide to cancel the mail the following error msg appears
The sendobject action was cancelled, etc.etc.
Is there any wayy of disabling this comment???
any help much appreciated.
Hope someone can help. Please bear with me....
The problem:
I have a table that includes email addresses. This is formatted as type as Hyperlink. Within that table I also have names and other details.
The form I'm working on selects a name from a list and the details appear on the side in unbounded boxes. (No problems so far!)
Problem 1 : the output in the email address appears as double i.e. qwerty@blip.dn#qwerty@blip.dn#
Problem 2: I have a send email button which opens outlook express and mails to the above erroneous email using the following code
Private Sub cmd_sendemail_Click()
On Error GoTo Err_sendemail
If IsNull(Me.txt_email) Then
MsgBox "This person has no email", , "Email Out"
Else
DoCmd.SendObject , , , (Me.txt_email)
End If
Exit_sendemail_Click:
Exit Sub
Err_sendemail:
MsgBox Err.Description
Resume Exit_sendemail_Click
End Sub
Is there anyway that the correct email address can be realised.
Problem 3: When outlook express starts and I decide to cancel the mail the following error msg appears
The sendobject action was cancelled, etc.etc.
Is there any wayy of disabling this comment???
any help much appreciated.