- a specific default label
- a default value for "Show time as", namely "Free"
- Default to "Private"
powered by performancing firefox
powered by performancing firefox
Hi, I recently moved to http://hallowhacker.blogspot.com so please come and find me there if you want to see my latest posts :-)
1 comment:
Solution to similar request at http://www.tech-archive.net/Archive/Outlook/microsoft.public.outlook.program_vba/2006-12/msg00122.html
"
dim obj as object
dim appt as Outlook.AppointmentItem
dim Folder as Outlook.Mapifolder
Set Folder=Application.Session.Pickfolder
If not Folder is Nothing Then
for each obj in Folder.Items
If TypeOf obj is Outlook.AppointmentItem then
with appt
.BusyStatus=0
.Sensitivity=olPrivate
.Save
End with
Endif
Next
Endif
--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
"
Post a Comment