View Single Post
  #3   Report Post  
2Lauren 2Lauren is offline
Junior Member
 
Posts: 1
Default

Eeek, can anyone give me more specifics on how this works? kind of step by step.



Quote:
Originally Posted by try2XL View Post
I create an Outlook Appointment on my calender with results from a
userform to remind me to invoice service job.

Hope this helps.

With OutlookApp.CreateItem(olAppointmentItem)
.Start = Date + 20 & " 2:00 pm"
.End = Date + 20 & " 2:00 pm"
.Subject = customer & " " & "Service Job #" & " " &
TextBox1.Value & " ---- Invoice Due"
.location = location.Value
.Body = tbComment.Value
.ReminderMinutesBeforeStart = 1440
.ReminderSet = True
.Save
End With


--
try2XL
------------------------------------------------------------------------
try2XL's Profile: http://www.excelforum.com/member.php...o&userid=30701
View this thread: http://www.excelforum.com/showthread...hreadid=503115