1

我使用 Independencesoft.Exchange 库。我尝试从我的外部应用程序为某些用户创建约会。我如何将这个约会的提醒设置为 NONE?我试过了

var appointment = new Appointment
            {
                // some properties setters.
                ReminderIsSet = false,
                ReminderMinutesBeforeStart = 0
            };`

但它不起作用。有什么建议么?

4

2 回答 2

3

我知道这有点晚了,但我刚刚遇到了这个问题。我发现您必须设置以下两个值才能将提醒设置为无:

ReminderIsSetSpecified = true;
ReminderIsSet = false;
于 2014-08-21T20:50:45.140 回答
0

我知道这已经晚了 6 年,但我用谷歌搜索了这个问题并找到了这个页面。由于这里没有任何答案对我有用,因此我将发布我最终发现适用于下一个 googler 的解决方案:

Public Sub Alex()

    Dim objOL As Object
    Dim CurrAppt As AppointmentItem

    Set objOL = CreateObject("Outlook.Application")
    Set CurrAppt = objOL.ActiveInspector.CurrentItem

    CurrAppt.ReminderSet = False   ' <=====================
    CurrAppt.Save

End Sub
于 2020-05-27T09:56:28.300 回答