A Microsoft Outlook email forum. Outlook Banter

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.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Recurring Meetings Using VBA



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old April 21st 06, 04:49 PM posted to microsoft.public.outlook.program_vba
WD
external usenet poster
 
Posts: 6
Default Recurring Meetings Using VBA

I have written code to move meetings from my calendar to a public calendar.
All meetings move successfully except recurring meetings. Below is the code
that I am using. Each time I use the any of the recurring objects nothing
seems to happen or it fails. Any assistance would be appreciated. Code below:

Sub MoveMeetings()
'Move meetings from my personal calendar to the public calendar

Dim olFolder As MAPIFolder
Dim olFolderSAP As MAPIFolder
Dim ns As Outlook.NameSpace
Dim appts As Object
Dim appt As Object
Dim apptrec As Object
Dim SAPMeeting As Object
Dim date1 As Date
Dim date2 As Date
Dim I As Integer

Const strPublicFolder = "Public Folders\All Public Folders\SAP Calendar"

Set ns = Outlook.GetNamespace("MAPI")
Set olFolder = ns.GetDefaultFolder(olFolderCalendar)
Set appts = olFolder.Items
Set olFolderSAP = GetFolder(strPublicFolder)
Set SAPMeeting = olFolderSAP.Items.Add()

date1 = InputBox("Move items between - this date: ", "Start Date")
date2 = InputBox("and this date: ", "End Date")

For Each appt In appts
If Format(appt.Start, "short date") = date1 And Format(appt.Start,
"short date") date2 Then
Set apptrec = appt.GetRecurrencePattern
With SAPMeeting
.Subject = appt.ConversationTopic
.Start = appt.Start
.End = appt.End
.Location = appt.Location
.Organizer = appt.Organizer
.Body = appt.Body
.RequiredAttendees = appt.RequiredAttendees
.OptionalAttendees = appt.OptionalAttendees
.RecurrenceType = apptrec.RecurrenceType
.Interval = apptrec.Interval
.PatternEndDate = apptrec.PatternEndDate
.Save
End With
End If
Next appt

End Sub

WD

Ads
  #2  
Old April 21st 06, 06:47 PM posted to microsoft.public.outlook.program_vba
WD
external usenet poster
 
Posts: 6
Default Recurring Meetings Using VBA

I want to add one additional thing to this:

What would the approach be if a meeting I wanted to move to the public
calendar had an attachment? What would the approach be? ... if there is a
place on the web that I can look to understand this some more let me know.
Thanks again.

"WD" wrote:

I have written code to move meetings from my calendar to a public calendar.
All meetings move successfully except recurring meetings. Below is the code
that I am using. Each time I use the any of the recurring objects nothing
seems to happen or it fails. Any assistance would be appreciated. Code below:

Sub MoveMeetings()
'Move meetings from my personal calendar to the public calendar

Dim olFolder As MAPIFolder
Dim olFolderSAP As MAPIFolder
Dim ns As Outlook.NameSpace
Dim appts As Object
Dim appt As Object
Dim apptrec As Object
Dim SAPMeeting As Object
Dim date1 As Date
Dim date2 As Date
Dim I As Integer

Const strPublicFolder = "Public Folders\All Public Folders\SAP Calendar"

Set ns = Outlook.GetNamespace("MAPI")
Set olFolder = ns.GetDefaultFolder(olFolderCalendar)
Set appts = olFolder.Items
Set olFolderSAP = GetFolder(strPublicFolder)
Set SAPMeeting = olFolderSAP.Items.Add()

date1 = InputBox("Move items between - this date: ", "Start Date")
date2 = InputBox("and this date: ", "End Date")

For Each appt In appts
If Format(appt.Start, "short date") = date1 And Format(appt.Start,
"short date") date2 Then
Set apptrec = appt.GetRecurrencePattern
With SAPMeeting
.Subject = appt.ConversationTopic
.Start = appt.Start
.End = appt.End
.Location = appt.Location
.Organizer = appt.Organizer
.Body = appt.Body
.RequiredAttendees = appt.RequiredAttendees
.OptionalAttendees = appt.OptionalAttendees
.RecurrenceType = apptrec.RecurrenceType
.Interval = apptrec.Interval
.PatternEndDate = apptrec.PatternEndDate
.Save
End With
End If
Next appt

End Sub

WD

  #3  
Old April 24th 06, 02:53 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Recurring Meetings Using VBA

Nothing different should need to be done for items with attachments. The
Move method will move those along with their associated messages.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"WD" wrote in message
...
I want to add one additional thing to this:

What would the approach be if a meeting I wanted to move to the public
calendar had an attachment? What would the approach be? ... if there is a
place on the web that I can look to understand this some more let me know.
Thanks again.


  #4  
Old April 24th 06, 02:55 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Recurring Meetings Using VBA

I certainly wouldn't touch the RecurrencePattern property unless I knew the
item was a recurring item or wanted to make it one. Just retrieving that
property makes the item recurring. Check for .IsRecurring first.

If you do have a recurring item get the master recurring item
(RecurrencePattern.Parent) and try moving that, it should move the entire
series.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"WD" wrote in message
...
I have written code to move meetings from my calendar to a public calendar.
All meetings move successfully except recurring meetings. Below is the
code
that I am using. Each time I use the any of the recurring objects nothing
seems to happen or it fails. Any assistance would be appreciated. Code
below:

Sub MoveMeetings()
'Move meetings from my personal calendar to the public calendar

Dim olFolder As MAPIFolder
Dim olFolderSAP As MAPIFolder
Dim ns As Outlook.NameSpace
Dim appts As Object
Dim appt As Object
Dim apptrec As Object
Dim SAPMeeting As Object
Dim date1 As Date
Dim date2 As Date
Dim I As Integer

Const strPublicFolder = "Public Folders\All Public Folders\SAP Calendar"

Set ns = Outlook.GetNamespace("MAPI")
Set olFolder = ns.GetDefaultFolder(olFolderCalendar)
Set appts = olFolder.Items
Set olFolderSAP = GetFolder(strPublicFolder)
Set SAPMeeting = olFolderSAP.Items.Add()

date1 = InputBox("Move items between - this date: ", "Start Date")
date2 = InputBox("and this date: ", "End Date")

For Each appt In appts
If Format(appt.Start, "short date") = date1 And Format(appt.Start,
"short date") date2 Then
Set apptrec = appt.GetRecurrencePattern
With SAPMeeting
.Subject = appt.ConversationTopic
.Start = appt.Start
.End = appt.End
.Location = appt.Location
.Organizer = appt.Organizer
.Body = appt.Body
.RequiredAttendees = appt.RequiredAttendees
.OptionalAttendees = appt.OptionalAttendees
.RecurrenceType = apptrec.RecurrenceType
.Interval = apptrec.Interval
.PatternEndDate = apptrec.PatternEndDate
.Save
End With
End If
Next appt

End Sub

WD


  #5  
Old April 24th 06, 04:31 PM posted to microsoft.public.outlook.program_vba
WD
external usenet poster
 
Posts: 6
Default Recurring Meetings Using VBA

Ken -

Are you saying that I should use the Move Method as opposed to the approach
that I am taking with Add? I noticed that some of the objects are
read-only...is there other objects that provide the access for
writing/changing?

"Ken Slovak - [MVP - Outlook]" wrote:

Nothing different should need to be done for items with attachments. The
Move method will move those along with their associated messages.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"WD" wrote in message
...
I want to add one additional thing to this:

What would the approach be if a meeting I wanted to move to the public
calendar had an attachment? What would the approach be? ... if there is a
place on the web that I can look to understand this some more let me know.
Thanks again.



  #6  
Old April 24th 06, 10:42 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Recurring Meetings Using VBA

I would certainly use the Move method unless you want to retain a copy of
the item in the original folder.

Many Outlook properties are read-only, if that's what you're asking. Some
are read-only for the Outlook object model and can be changed using some
other API such as CDO 1.21 or Extended MAPI or Redemption. Others can only
be set before the first time the item is saved. Others can only be set by
Outlook or the store provider or the MAPI transport and are out of your
control.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Absolute Beginner's Guide to Microsoft Office Outlook 2003
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.com/products.htm


"WD" wrote in message
...
Ken -

Are you saying that I should use the Move Method as opposed to the
approach
that I am taking with Add? I noticed that some of the objects are
read-only...is there other objects that provide the access for
writing/changing?


 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Outlook should let me select my own dates for recurring meetings The Scheduler Outlook - Calandaring 1 March 30th 06 03:28 AM
Recurring Meetings duplicating Mobyduck Outlook - Calandaring 0 February 28th 06 12:36 PM
Disapearing Ocurrences for Recurring meetings Executive Assistant to... Outlook - Calandaring 0 February 9th 06 02:06 AM
Changes to recurring meetings should only apply to the future chimaera Outlook - Calandaring 1 February 8th 06 04:18 PM
Disappearing recurring meetings [email protected] Outlook - Calandaring 0 January 11th 06 11:17 PM


All times are GMT +1. The time now is 03:10 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2024 Outlook Banter.
The comments are property of their posters.