U
Ulf Kirsten
Hi there!
I would like to create a appointment for 2 or more people, but not for
myself. I would like to use VBA for this.
So I wrote code:
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(1)
With objOutlookMsg
.Recipients.Add N1
.Recipients.Add N2
.SendUsingAccount = "(e-mail address removed)"
.Subject = "Hotline " & N1 & " / " & N2
.Start = Beginn
.End = ende
.ReminderMinutesBeforeStart = 15
.busystatus = 2
.meetingstatus = 1
..send
end with
Unfortunately I am still the Organizer of the Meeting...
Additional Info: "(e-mail address removed)" is a outlook Account, for which
I have the right "send on behalf...".
Any Ideas?
UK
Dresden, Germany
I would like to create a appointment for 2 or more people, but not for
myself. I would like to use VBA for this.
So I wrote code:
Set objOutlook = CreateObject("Outlook.Application")
Set objOutlookMsg = objOutlook.CreateItem(1)
With objOutlookMsg
.Recipients.Add N1
.Recipients.Add N2
.SendUsingAccount = "(e-mail address removed)"
.Subject = "Hotline " & N1 & " / " & N2
.Start = Beginn
.End = ende
.ReminderMinutesBeforeStart = 15
.busystatus = 2
.meetingstatus = 1
..send
end with
Unfortunately I am still the Organizer of the Meeting...
Additional Info: "(e-mail address removed)" is a outlook Account, for which
I have the right "send on behalf...".
Any Ideas?
UK
Dresden, Germany