English 中文(简体)
专题日历格式的困难
原标题:Difficulty with .ics calendar formatting

I m 在C#中制作一个专题日历项目,并通过电子邮件将其发送至展望日历。 基本上说,它正在工作,但通常比Im规定的时间提前4小时。 我认为,我确定的时间要素是正确的。 东部时间区一米,严格地说,这是一种内部制度,因此永远都是美国东部的时间区。

是否有任何人认为我是错了吗?

BEGIN:VCALENDAR
PRODID:-//Microsoft Corporation//Outlook 16.0 MIMEDIR//EN
VERSION:2.0
METHOD:PUBLISH
BEGIN:VTIMEZONE
TZID:Eastern Standard Time
BEGIN:STANDARD
DTSTART:16011104T020000
RRULE:FREQ=YEARLY;BYDAY=1SU;BYMONTH=11
TZOFFSETFROM:-0400
TZOFFSETTO:-0500
END:STANDARD
BEGIN:DAYLIGHT
DTSTART:16010311T020000
RRULE:FREQ=YEARLY;BYDAY=2SU;BYMONTH=3
TZOFFSETFROM:-0500
TZOFFSETTO:-0400
END:DAYLIGHT
END:VTIMEZONE
BEGIN:VEVENT
DESCRIPTION:Training class to inform about and prevent workplace harassment
DTSTAMP:20240202T153000Z
DTSTART;TZID="Eastern Standard Time":20240213T140000Z
DTEND;TZID="Eastern Standard Time":20240213T153000Z
SEQUENCE:0
SUMMARY;LANGUAGE=en-us:Workplace Harassment Prevention Training Class 
LOCATION:Building 2 room 149
TRANSP:OPAQUE
UID:69EEED22-E111-436C-9210-6B95000A55D5
END:VEVENT
END:VCALENDAR
问题回答

<代码>Z,在规定日期结束时,这意味着UTC。 时间区将被忽视。 它还建议,例如,在东部使用“Lolson”时间区,以提供更好的支持。





相关问题
MS Outlook macro to strikeout selected text

The task is to apply strikeout to current font in selected text area. The difficulty is that Outlook doesn t support recording macros on the fly - it wants code to be written by hand. For example, ...

Outlook shortcuts style toolbar in Qt

Is there any way to create outloook shortcuts style toolbar in Qt? Should use normal toolbar and try to style it somehow (I have little idea how to achieve this)? Or does Qt provide builtin widget for ...

Outlook 2007 CommandBarControl.Execute won t work

I recently switched to Outlook 2007 and noticed that my VBA-macros won t work. I use the following code to open a new appointment-item (and fill it automatically). It worked perfect in Outlook 2003, ...

outlook and programming with C#

I wish to use the my Microsoft Outlook Task list in my C# application. Do you have any idea if that is possible? Can you give me a starting point or some tips for this task? many thanks! ps: btw, now ...

get file icon for Outlook appointment (.msg)

I ve read Get File Icon used by Shell and the other similar posts - and already use SHFileInfo to get the associated icon for any given extension, and that works great. However, Outlook uses ".msg" ...

Outlook 2003 - Add an icon column to a View?

I want to add a custom column to the Inbox which is a Yes/No column. I want an icon to show in the Yes case. How can I do this? Everything I ve looked up is either about adding a column through the ...

热门标签