Hi, 

I need help with my code. I want an excel file to save (stamp time), every 
thirty minutes, and send it to me . I have gotten the file to save (stamp 
time) and send it to me. however, when I try to do this continuously for 30 
min, I run into issues. below is my code, anyone have any ideas?. I tried 
doing a loop function, so while A1 = 0 it will keep running, but when I 
click stop button, it will change A1 = 1, and basically stop. I also want 
to be able to run this program and still be able to use excel , and not be 
disturbed, any ideas?

 

Option Explicit

 

Private Sub CommandButton1_Click()

Range("A1").Value = 0

Do While Range("A1").Value = 0

Loop

 

ActiveWorkbook.SaveAs "VBA Email " & Format(Date, "mm-dd-yyyy") & " " & 
Format(Time, "h.mm AM/PM") & ".xlsm"

Dim OutApp As Object

Dim OutMail As Object

 

Set OutApp = CreateObject("Outlook.Application")

Set OutMail = OutApp.CreateItem(0)

 

On Error Resume Next

With OutMail

.to = "x...@gmail.com <elissavbl...@gmail.com>"

.Subject = "VBA Email"

.Attachments.Add (ActiveWorkbook.FullName)

.Display

Application.SendKeys "%s"

End With

On Error GoTo 0

 

Set OutMail = Nothing

Set OutApp = Nothing

 

Application.Wait (Now + TimeValue("0:00:02"))

 

 

End Sub

 

 

Private Sub CommandButton2_Click()

Range("A1").Value = 1

End Sub

-- 
Are you =EXP(E:RT) or =NOT(EXP(E:RT)) in Excel? And do you wanna be? It’s 
=TIME(2,DO:IT,N:OW) ! Join official Facebook page of this forum @ 
https://www.facebook.com/discussexcel

FORUM RULES

1) Use concise, accurate thread titles. Poor thread titles, like Please Help, 
Urgent, Need Help, Formula Problem, Code Problem, and Need Advice will not get 
quick attention or may not be answered.
2) Don't post a question in the thread of another member.
3) Don't post questions regarding breaking or bypassing any security measure.
4) Acknowledge the responses you receive, good or bad.
5) Jobs posting is not allowed.
6) Sharing copyrighted material and their links is not allowed.

NOTE  : Don't ever post confidential data in a workbook. Forum owners and 
members are not responsible for any loss.
--- 
You received this message because you are subscribed to the Google Groups "MS 
EXCEL AND VBA MACROS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to excel-macros+unsubscr...@googlegroups.com.
To post to this group, send email to excel-macros@googlegroups.com.
Visit this group at http://groups.google.com/group/excel-macros.
For more options, visit https://groups.google.com/d/optout.

Reply via email to