Feb 26, 2003 #1 amsh7 Programmer May 27, 2002 18 US I using some controllels (for example SMTP) that pop-up errors message box. the command: on error resume next does not help How can I ignore these messages automaticlly ? Thank You Amos
I using some controllels (for example SMTP) that pop-up errors message box. the command: on error resume next does not help How can I ignore these messages automaticlly ? Thank You Amos
Feb 26, 2003 #2 kieutv Programmer Feb 25, 2003 13 VN U must process errors on the last sub or funtion. I have no your concrete code so I can't show U how to process. Good luck. KieuTV Upvote 0 Downvote
U must process errors on the last sub or funtion. I have no your concrete code so I can't show U how to process. Good luck. KieuTV
Feb 27, 2003 #3 paulbent Programmer Mar 4, 2002 1,071 GB If the control doesn't supply the means to suppress the error messages or dialogs then you probably can't. On Error Resume Next will only work if the control raises an error, not if it displays an error message. Paul Bent Northwind IT Systems http://www.northwindit.co.uk Upvote 0 Downvote
If the control doesn't supply the means to suppress the error messages or dialogs then you probably can't. On Error Resume Next will only work if the control raises an error, not if it displays an error message. Paul Bent Northwind IT Systems http://www.northwindit.co.uk