Results 1 to 2 of 2

Thread: HELP! ErrorReport.dll - Error code: 0xC00402CE - "Email"

Threaded View

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Jan 2007
    Location
    Iran
    Posts
    237

    HELP! ErrorReport.dll - Error code: 0xC00402CE - "Email"

    Hi,
    I have this error to send App. information & Err. inforamtion with ErrorReport.dll(Private App.).
    IIS 5.0
    VB 6.0

    Error:
    Unable to deliver this message because the follow error was encountered: "Error is processing file in pickup directory.".

    The specific error code was 0xC00402CE.

    Code:
    VB Code:
    1. Private Sub VB_Frm_Error_Btn_SendError_Click()
    2. On Error Resume Next
    3. VB_Frm_Error_Btn_SendError.Enabled = False
    4.  
    5. Dim objNewMail As CDONTS.NewMail
    6.  
    7. Set objNewMail = CreateObject("CDONTS.NewMail")
    8.  
    9. With objNewMail
    10. .From = "error-report@" & VB_Frm_Error_TxtBx_ApplicationTitle & ".exe"
    11. .Subject = "ErrorReport.dll: " & VB_Frm_Error_TxtBx_ApplicationTitle
    12. .Body = "Application information:" & vbCrLf & "App. title: " & VB_Frm_Error_TxtBx_ApplicationTitle & " - " & "App. description: " & VB_Frm_Error_TxtBx_ApplicationDescription & vbCrLf & "App. EXE name: " & VB_Frm_Error_TxtBx_ApplicationEXEName & " - " & "App. version: " & VB_Frm_Error_TxtBx_ApplicationVersion & vbCrLf & vbCrLf & "Error information:" & vbCrLf & "Form name: " & VB_Frm_Error_TxtBx_FormName & " - " & "Title code: " & VB_Frm_Error_TxtBx_TitleCode & vbCrLf & "Pub. Err. number: " & VB_Frm_Error_TxtBx_PublicErrorNumber & " - " & "Pub. Err. description: " & VB_Frm_Error_TxtBx_PublicErrorDescription & vbCrLf & "Prv. Err. number: " & VB_Frm_Error_TxtBx_PrivateErrorNumber & " - " & "Prv. Err. description: " & VB_Frm_Error_TxtBx_PrivateErrorDescription
    13. .Importance = 2
    14. .Send
    15. End With
    16.  
    17. Set objNewMail = Nothing
    18. VB_Frm_Error_Btn_Cancel.Caption = "Close"
    19. End Sub
    Last edited by si_the_geek; Jan 5th, 2007 at 12:08 PM. Reason: added vbcode tags
    Y.P.Y

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width