Tag: 会议请求

Excel创buildoutlook会议请求,无法发送

我正在创build一个Outlook会议请求的代码,我希望它发送到被邀请者列表。 我可以创build会议请求,但我无法发送。 我可以在日历中看到会议请求。 我怎样才能发送? 这是我的代码: Sub AddAppointments() ' Create the Outlook session Set myOutlook = CreateObject("Outlook.Application") ' Start at row 2 r = 2 Do Until Trim(Cells(r, 1).Value) = "" ' Create the AppointmentItem Set myApt = myOutlook.CreateItem(1) ' Set the appointment properties myApt.Subject = Cells(r, 1).Value myApt.Location = Cells(r, 2).Value myApt.Start = Cells(r, 3).Value […]