Solved Error 6 Overflow (1 Viewer)

When you are debugging it is often helpful to "turn off" the error handling.

So in front of lines like
On Error GoTo ErrorHandler

put a single quote before. Often called "commenting it out".
' On Error GoTo ErrorHandler:<br>

Now it will break on that error in the correct location (maybe depends on the function called where it breaks)

Just remember once you figure out the problem to "un comment" it so your handler works again.

If you are stuck on figuring out this application, I would spend time on how to debug your code. There are lots of tools and tricks.

I would google "How to debug VBA code" and you will probably get some good links and videos.
 
I have never seen MailSender, so do you have any missing references?
 
Do you have the latest ASPEmail?
 
Do you have the latest ASPEmail?
I was just coming in here to tell everyone to stop helping.
I was going to reinstall ASPEmail and it hit me that the documentation I have references a "32 bit key".
So I am in the process of downloading the 64 bit key software from them to see if that solves the issue. My guess is yes.
 
Problem solved. While there was technically nothing wrong other than 3rd party software issues, you have all helped me for any future issues I may have!
 

Users who are viewing this thread

Back
Top Bottom