![]() |
If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
I have a rule to move calendar item to a subfolder within mailbox. Due to
this the snipper doesnt post item as tentative. I'm looking for a script to attach to calendar rule either to post tentative or mark the item as open so it would post tentative. I selected a RULE for all incoming meeting appointments and enabled 'run a script'. Below is what is shown in my script. Sub CustomMeetingRequestRule(Item As Outlook.MeetingItem) Rem Outlook.Add (olAppointmentItem) Open(Outlook.Inspectors.Item.CurrentItem) End Sub Either Outlook.Add (olAppointmentItem) OR Open(Outlook.Inspectors.Item.CurrentItem) is working. Can anyone give me the right syntax for opening current appt item. |
Ads |
#2
|
|||
|
|||
![]()
See if this works:
Sub CustomMeetingRequestRule(Item As Outlook.MeetingItem) Dim appt As Outlook.AppointmentItem Set appt = Item.GetAssociatedAppointment appt.BusyStatus = olTentative appt.Save Set appt = Nothing End Sub -- Sue Mosher, Outlook MVP Author of Configuring Microsoft Outlook 2003 http://www.turtleflock.com/olconfig/index.htm and Microsoft Outlook Programming - Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Henry" wrote in message ... I have a rule to move calendar item to a subfolder within mailbox. Due to this the snipper doesnt post item as tentative. I'm looking for a script to attach to calendar rule either to post tentative or mark the item as open so it would post tentative. I selected a RULE for all incoming meeting appointments and enabled 'run a script'. Below is what is shown in my script. Sub CustomMeetingRequestRule(Item As Outlook.MeetingItem) Rem Outlook.Add (olAppointmentItem) Open(Outlook.Inspectors.Item.CurrentItem) End Sub Either Outlook.Add (olAppointmentItem) OR Open(Outlook.Inspectors.Item.CurrentItem) is working. Can anyone give me the right syntax for opening current appt item. |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Rule 'run a script' not running my script | [email protected] | Outlook and VBA | 3 | May 30th 06 01:09 PM |
Selective Read Receipts VBA using run a script rule | prideoflions | Outlook and VBA | 5 | May 26th 06 04:31 PM |
Script Not run in outlook 2003 | Joey | Outlook and VBA | 4 | May 19th 06 03:10 PM |
Script to publish custom form from .OFT to calendar | Patrick W. | Outlook - Using Forms | 2 | April 19th 06 03:55 PM |
"Run a script" rule triggers but script does not execute | Trey Shaffer | Outlook and VBA | 7 | April 8th 06 12:34 AM |