Making an appointment from a different account (OL 2007)

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 = "[email protected]"

.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: "[email protected]" is a outlook Account, for which
I have the right "send on behalf...".

Any Ideas?
UK
Dresden, Germany
 
Top