thetambarineman
Technical User
This error handler was kindly generated by Dougp. Unfortunately for some reason some of it will just not function:<br>
<br>
I can't get the e-mail address to be separate from the subject and the body. I must be overlooking something, does anyone know what?rivate Sub Command1_Click()<br>
On Error GoTo Err_Command1_Click<br>
<br>
' Raise the exception<br>
s = 3 / 0<br>
<br>
Exit_Command1_Click: '<<< Put all this code at the bottom right above the END SUB<br>
Exit Sub<br>
<br>
Err_Command1_Click:<br>
Select Case Err.Number<br>
Case 3021<br>
' No current record<br>
<br>
Case Else<br>
MsgBox "Error # " & Err.Number & " " & Err.Description, vbInformation, "In sub Command1_Click"<br>
<br>
End Select<br>
<br>
Dim stext As String<br>
Dim sAddedtext As String<br>
<br>
stext = "mailto:" & "douglasp"<br>
<br>
sAddedtext = sAddedtext & "&Subject=" & "Error From VB Program " & Err.Number & " " & Err.Description<br>
sAddedtext = sAddedtext & "&Body=" & "Put your Body Text here if needed"<br>
<br>
'Add an attachment if needed<br>
'If Len(txtAttachment) Then<br>
'sAddedtext = sAddedtext & "Attach=" & Chr$(34) & Me!txtAttachment & Chr$(34)<br>
'End If<br>
<br>
stext = stext & sAddedtext<br>
<br>
' launch default e-mail program<br>
If Len(stext) Then<br>
Call ShellExecute(Me.hwnd, "open", stext, vbNullString, vbNullString, SW_SHOWNORMAL)<br>
End If<br>
<br>
Resume Exit_Command1_Click<br>
<br>
<br>
Code generated by DougP<br>
<br>
Thanks in advance:<br>
Paul McLornan<br>
<br>
<br>
I can't get the e-mail address to be separate from the subject and the body. I must be overlooking something, does anyone know what?rivate Sub Command1_Click()<br>
On Error GoTo Err_Command1_Click<br>
<br>
' Raise the exception<br>
s = 3 / 0<br>
<br>
Exit_Command1_Click: '<<< Put all this code at the bottom right above the END SUB<br>
Exit Sub<br>
<br>
Err_Command1_Click:<br>
Select Case Err.Number<br>
Case 3021<br>
' No current record<br>
<br>
Case Else<br>
MsgBox "Error # " & Err.Number & " " & Err.Description, vbInformation, "In sub Command1_Click"<br>
<br>
End Select<br>
<br>
Dim stext As String<br>
Dim sAddedtext As String<br>
<br>
stext = "mailto:" & "douglasp"<br>
<br>
sAddedtext = sAddedtext & "&Subject=" & "Error From VB Program " & Err.Number & " " & Err.Description<br>
sAddedtext = sAddedtext & "&Body=" & "Put your Body Text here if needed"<br>
<br>
'Add an attachment if needed<br>
'If Len(txtAttachment) Then<br>
'sAddedtext = sAddedtext & "Attach=" & Chr$(34) & Me!txtAttachment & Chr$(34)<br>
'End If<br>
<br>
stext = stext & sAddedtext<br>
<br>
' launch default e-mail program<br>
If Len(stext) Then<br>
Call ShellExecute(Me.hwnd, "open", stext, vbNullString, vbNullString, SW_SHOWNORMAL)<br>
End If<br>
<br>
Resume Exit_Command1_Click<br>
<br>
<br>
Code generated by DougP<br>
<br>
Thanks in advance:<br>
Paul McLornan<br>
<br>