Results 1 to 2 of 2

Thread: How to find out real error?

  1. #1

    Thread Starter
    Hyperactive Member
    Join Date
    Apr 2010
    Posts
    478

    How to find out real error?

    What is the best way to track error? I used code below, but user always receive "Fail to submit".

    How to find out real error?

    Try

    If EmailOut(strEmail, strPassword) Then // this is a boolean function. If email server has a problem will return false.
    ShowNotification(rnError, "Your password will send to your email address " & strEmail & " soon")
    Else
    ShowNotification(rnError, "Fail to submit")
    Exit Sub
    End If
    Catch ex As Exception
    ShowNotification(rnError, ex.Message)
    End Try

  2. #2
    PowerPoster SJWhiteley's Avatar
    Join Date
    Feb 2009
    Location
    South of the Mason-Dixon Line
    Posts
    2,256

    Re: How to find out real error?

    What is EmailOut? That's where you'll be able to find the actual error.
    "Ok, my response to that is pending a Google search" - Bucky Katt.
    "There are two types of people in the world: Those who can extrapolate from incomplete data sets." - Unk.
    "Before you can 'think outside the box' you need to understand where the box is."

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