I have successfully created some all-day-event calendar events programmatically using C#, which I am very happy with. The only problem is when I view the details of a particular calendar entry, I always get a message below the title of the entry that says "This entry was created in a different time zone. The time in that time zone is (for example): Wed 03/23/2016 2:00 PM EDT2:00 PM EDT." Curiously the time is always duplicated. I would like to remove this message if possible. If I right-click the message and go to Document Properties and then go to the Fields tab, I can see the following fields:
- EndTimeZone (current value: "Z=5$DO=1$DL=3 2 1 11 1 1$ZX=32$ZN=Eastern")
- LocalTimeZone (current value: "Z=5$DO=1$DL=3 2 1 11 1 1$ZX=32$ZN=Eastern")
- StartTImeZone (current value: "Z=5$DO=1$DL=3 2 1 11 1 1$ZX=32$ZN=Eastern")
This makes sense, since I am located on the Eastern time zone. So, why is the error occurring and how do I fix it?