A family of Microsoft relational database management systems designed for ease of use.
ISSUE RESOLVED SLICK PRODUCT
As noted in previous posts the first 3 emails of any size batch would be sent immediately and the remaining 6-296 would stack up in the outbox with s strange icon in front of them. This happened when using ClickYes or vbMAPI Outlook Security Evader implemented using their sample code.
Over the next few hours 3 or 6 or some multiple of 3 would be sent. Most never left the Outbox. Only happened on 1 PC running MS office 2007: the other 2 PCs are using Office 2000 and emails never stacked up in the outbox. The SAME Access database was tried on all 3 PCs.
I made a slight change (moved the Send/Receive command line) to the sample code provided by technical support athttp://www.everythingaccess.com and now everything works great. Also removed ClickYes as a precaution.
Just ran another test sending 300 short emails with no attachments and they all cleared the outbox in approximately 4 minutes. During this time cpu usage was bouncing between 40% and 80% but I was able to open an excel spreadsheet and a work document during this time.
Below are part of the code sent to me by everythingaccess, and my slight change
The code provided byhttp://www.everythingaccess.com ended as:
Item.Send
Set Item = Nothing
recEmail.MoveNext
Loop
Set db = Nothing
Session.OutlookSendReceiveAll
Set Folder = Nothing
Set Session = Nothing
My code ends as:
Item.Send
Session.OutlookSendReceiveAll ç New location
Set Item = Nothing
recEmail.MoveNext
Loop
Set db = Nothing
' Session.OutlookSendReceiveAll ç Moved this line up
Set Folder = Nothing
Set Session = Nothing
Steve