-
Topic
-
Hello,
I have moved an applet that generates an appointment from GroupWise 2012 SP 3 on Windows XP to GroupWise 2014 R2 on Windows 7 SP 1. My applet contains this:
‘ Create a draft appointment message with no user interface
Set objAppt = GroupWise.Account.Calendar.Messages.Add(“GW.MESSAGE.APPOINTMENT”, fgwDraft)‘ Add a single recipient – myself
Set objRecipient = objAppt.Recipients.Add(GroupWise.Account.Owner.EmailAddress,,0)
With objAppt(snip the various settings like start date, end date, busy, alarm, etc.)
End With
Set objNewAppt = objAppt.Send
Set objRecipient = Nothing
Set objAppt = NothingBut when sent, there is no recipient. I even tried:
Set objRecipient = objAppt.Recipients.Add(“my_email_address@my_domain_name”,,0)
The items don’t appear in my main calendar, but they do appear in my Home view calendar. When I open them up there, the recipient’s list is empty, and if I put in my name, I can hit the Send button, and then the appointment goes on my main calendar.
Do you have hints as to whether I’m doing something wrong? Or did I stumble into a bug?
One more piece of information: I installed GroupWise 2014 R2 on a Windows XP machine, and installed Formativ Runtime, and copied my applet to that machine. Same symptoms as on the Windows 7 machine. So the commonality between both failure modes is the GroupWise Client. Build 123047 if it helps.
- You must be logged in to reply to this topic.