1
延迟Outlook 2010中的会议邀请 - vba
我正在尝试编写一个代码来安排会议邀请,并在以后的日期/时间自动延迟发送给参与者,即延迟发送会议邀请 下面是代码,但是我想在30分钟后发送邀请时发出错误。 错误行: Application.Wait(Now + TimeValue(“06:30:00”)) 真的很感谢这方面的帮助。非常感谢 Sub Book_meeting_room() Dim olApp As Outlook.Application Dim olApt As AppointmentItem Set olApp = Outlook.Application 'Creating Outlook Session Set olApt = olApp.CreateItem(olAppointmentItem) 'Creating an Appointment With olApt .MeetingStatus = olMeeting 'olAppointmentItem with Meeting status olMeeting 'becomes a OL Meeting Item. .Subject = "Room 1" …