G
Guest
I am wondering how I can set an appointment in Outlook, using VBA, which will
always have the same start time, but the date will vary.
I can get the date to set using:
objAppt.Subject = "New Hire Consult with " & strEmp
objAppt.Start = dteDate
objAppt.Save
But, when I add the time on there (I have tried several ways, including " &
"#08:00#"; or "#" & dteDate & " " & dteTime & "#", among others.) So, I can
get a 'hard coded' time/date... but the date will be recurring it depends on
the users input. ; it's okay for the time to be a standard.
Oh, and also - how can I make the calendar update immediately? I have to
exit out of Outlook once or twice before the update is made.
Hope that made sense.
Thanks!
always have the same start time, but the date will vary.
I can get the date to set using:
objAppt.Subject = "New Hire Consult with " & strEmp
objAppt.Start = dteDate
objAppt.Save
But, when I add the time on there (I have tried several ways, including " &
"#08:00#"; or "#" & dteDate & " " & dteTime & "#", among others.) So, I can
get a 'hard coded' time/date... but the date will be recurring it depends on
the users input. ; it's okay for the time to be a standard.
Oh, and also - how can I make the calendar update immediately? I have to
exit out of Outlook once or twice before the update is made.
Hope that made sense.
Thanks!