Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Maybe it's a time thing. Try making Excel wait a few seconds between
each send. Definitely check out Dennis' site that Ron mentioned also. Cliff Edwards |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks for that idea Cliff.........how do I go about doing that?
Here's my Batch code.........the SendEmail macro works fine on a one-shot.....this batch macro runs to get into Lotus the first time and then never comes back so I can process the "next r" step Sub Batchemail() Dim lastrow As Long, r As Long Sheets("All12").Select Range("A12").Select Selection.Sort Key1:=Range("Q12"), Order1:=xlAscending, Header:=xlGuess, _ OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom lastrow = Cells(Rows.Count, "Q").End(xlUp).Row For r = lastrow To 12 Step -1 If Cells(r, "Q") = Range("DATA!k2").Value Then Cells(r, "Q").Select Range("ReportCard!A1").Value = Selection.Offset(0, -16).Value Call SendEmail 'this is the email macro that works by itself ok End If Next r MsgBox "ALL THROUGH!" End Sub TIA Vaya con Dios, Chuck, CABGx3 "ward376" wrote in message ... Maybe it's a time thing. Try making Excel wait a few seconds between each send. Definitely check out Dennis' site that Ron mentioned also. Cliff Edwards |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
You can try using a line like this between sends in your sendemail
procedure... Application.wait Now + TimeValue("00:00:03") Sub example() Cells.Select Application.wait Now + TimeValue("00:00:03") Cells(1, 1).Select MsgBox "Done Waiting" End Sub Cliff Edwards |
#4
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Thanks Cliff, I'll give it a shot. I only have OE5 here at home, the Lotus
Notes is at work and our Factory is closed 'till the 7th, but I will sure be happy to have something to try when I get back......this thing has been bugging me for several days........nobody at work likes Lotus Notes, but our IS dept has jammed it down our throats....... Whether it works or not to solve my problem, I appreciate your response, and also I've learned something new.....I've wondered how to pause processing in other apps. Thanks much Vaya con Dios, Chuck, CABGx3 "ward376" wrote in message ... You can try using a line like this between sends in your sendemail procedure... Application.wait Now + TimeValue("00:00:03") Sub example() Cells.Select Application.wait Now + TimeValue("00:00:03") Cells(1, 1).Select MsgBox "Done Waiting" End Sub Cliff Edwards |
#5
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
If you're going to be working with Notes and VBA definitely check out
http://excelkb.com/?cNode=1X5M7A and http://www.redbooks.ibm.com/abstract...5670.html?Open Cliff Edwards |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
SendMail via Lotus Notes | Excel Discussion (Misc queries) | |||
Lotus Notes | Excel Discussion (Misc queries) | |||
Sendmail and Lotus Notes trouble | Excel Programming | |||
Mail über Lotus Notes aus Excel heraus/ Sending Mail with Excel through Lotus Notes | Excel Programming | |||
Lotus Notes | Excel Programming |