PC Review


Reply
Thread Tools Rate Thread

Can appointments be Automarked?

 
 
MLD
Guest
Posts: n/a
 
      29th Jun 2005
I'm helping a new user dump their calendar from a Palm Pilot, but they want
everythign to come into OLK 2003 marked as "Private". (The little check box
inthe lower right corner of the appointment window)
there are over 4300 items for 2005 alone! Is there a way for me to do
something, run something or write something that will automatically mark the
selected items? I have already discovered that this "Private" checkbox is
not a field that can be added to the View, nor can it be filtered or
searched by.

I really need help on this one!!
Thanks,
-Monica


 
Reply With Quote
 
 
 
 
=?Utf-8?B?dGJnZw==?=
Guest
Posts: n/a
 
      30th Jun 2005
Actually, you *can* filter or search either Private or non-Private
appointments.

I'd start with a list view like By Category because it lets you go through
all the appointments sequentially. To change the view, it's View, Arrange
By, Current View, By Category. (To return to the default view, it's View,
Arrange By, Current View, Day/Week/Month)

From there, click the Options button and select Advanced Find.
Make sure you're looking for Appointments and Meetings and looking in the
Calendar.
Select the Advanced tab.
In the section that says Define More Criteria, click the Field button, then
the All Appointment Fields category, then select Sensitivity.
Equals should be your default Condition (though you can change it to Not
Equal To if you want only non-private appointments to appear), then change
the Value to Private.

I tried that with both a filter and a search and it worked.

Good luck!

tbgg
TrueBlueGeekGirl



"MLD" wrote:

> I'm helping a new user dump their calendar from a Palm Pilot, but they want
> everythign to come into OLK 2003 marked as "Private". (The little check box
> inthe lower right corner of the appointment window)
> there are over 4300 items for 2005 alone! Is there a way for me to do
> something, run something or write something that will automatically mark the
> selected items? I have already discovered that this "Private" checkbox is
> not a field that can be added to the View, nor can it be filtered or
> searched by.
>
> I really need help on this one!!
> Thanks,
> -Monica
>
>
>

 
Reply With Quote
 
Michael Bauer
Guest
Posts: n/a
 
      30th Jun 2005
Hi Monica,

after you´ve imported your appointments you can use this sample. It
searches for all non-private items in the standard calendar and makes
them private.

Public Function MakeAllAppointmentsPrivate()
Dim colItems As Outlook.Items
Dim sFilter As String
Dim obj As Object

sFilter = "[Sensitivity]<>2"
Set colItems =
Application.Session.GetDefaultFolder(olFolderCalendar).Items
Set colItems = colItems.Restrict(sFilter)
For Each obj In colItems
If TypeOf obj Is Outlook.AppointmentItem Then
With obj
.Sensitivity = olPrivate
.Save
End With
End If
Next
End Function


--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook



MLD wrote:
> I'm helping a new user dump their calendar from a Palm Pilot, but
> they want everythign to come into OLK 2003 marked as "Private". (The
> little check box inthe lower right corner of the appointment window)
> there are over 4300 items for 2005 alone! Is there a way for me to do
> something, run something or write something that will automatically
> mark the selected items? I have already discovered that this
> "Private" checkbox is not a field that can be added to the View, nor
> can it be filtered or searched by.
>
> I really need help on this one!!
> Thanks,
> -Monica


 
Reply With Quote
 
MLD
Guest
Posts: n/a
 
      30th Jun 2005
Michael - thank you so much!
One small proble, I am getting a syntax error at the line "Set colItems=" ??
I directly copie dand pasted your text into the module window, so i know I
didn't mess it up that way.
Please advise?
-Monica
(Direct: (E-Mail Removed))

"Michael Bauer" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Hi Monica,
>
> after you´ve imported your appointments you can use this sample. It
> searches for all non-private items in the standard calendar and makes
> them private.
>
> Public Function MakeAllAppointmentsPrivate()
> Dim colItems As Outlook.Items
> Dim sFilter As String
> Dim obj As Object
>
> sFilter = "[Sensitivity]<>2"
> Set colItems =
> Application.Session.GetDefaultFolder(olFolderCalendar).Items
> Set colItems = colItems.Restrict(sFilter)
> For Each obj In colItems
> If TypeOf obj Is Outlook.AppointmentItem Then
> With obj
> .Sensitivity = olPrivate
> .Save
> End With
> End If
> Next
> End Function
>
>
> --
> Viele Gruesse / Best regards
> Michael Bauer - MVP Outlook
>
>
>
> MLD wrote:
> > I'm helping a new user dump their calendar from a Palm Pilot, but
> > they want everythign to come into OLK 2003 marked as "Private". (The
> > little check box inthe lower right corner of the appointment window)
> > there are over 4300 items for 2005 alone! Is there a way for me to do
> > something, run something or write something that will automatically
> > mark the selected items? I have already discovered that this
> > "Private" checkbox is not a field that can be added to the View, nor
> > can it be filtered or searched by.
> >
> > I really need help on this one!!
> > Thanks,
> > -Monica

>



 
Reply With Quote
 
Michael Bauer
Guest
Posts: n/a
 
      30th Jun 2005
Monica, please join "Set colItems=" and the next line into one line.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook



MLD wrote:
> Michael - thank you so much!
> One small proble, I am getting a syntax error at the line "Set
> colItems=" ?? I directly copie dand pasted your text into the module
> window, so i know I didn't mess it up that way.
> Please advise?
> -Monica
> (Direct: (E-Mail Removed))
>
> "Michael Bauer" <(E-Mail Removed)> wrote in message
> news:(E-Mail Removed)...
>> Hi Monica,
>>
>> after you´ve imported your appointments you can use this sample. It
>> searches for all non-private items in the standard calendar and makes
>> them private.
>>
>> Public Function MakeAllAppointmentsPrivate()
>> Dim colItems As Outlook.Items
>> Dim sFilter As String
>> Dim obj As Object
>>
>> sFilter = "[Sensitivity]<>2"
>> Set colItems =
>> Application.Session.GetDefaultFolder(olFolderCalendar).Items
>> Set colItems = colItems.Restrict(sFilter)
>> For Each obj In colItems
>> If TypeOf obj Is Outlook.AppointmentItem Then
>> With obj
>> .Sensitivity = olPrivate
>> .Save
>> End With
>> End If
>> Next
>> End Function
>>
>>
>> --
>> Viele Gruesse / Best regards
>> Michael Bauer - MVP Outlook
>>
>>
>>
>> MLD wrote:
>>> I'm helping a new user dump their calendar from a Palm Pilot, but
>>> they want everythign to come into OLK 2003 marked as "Private". (The
>>> little check box inthe lower right corner of the appointment window)
>>> there are over 4300 items for 2005 alone! Is there a way for me to
>>> do something, run something or write something that will
>>> automatically mark the selected items? I have already discovered
>>> that this "Private" checkbox is not a field that can be added to
>>> the View, nor can it be filtered or searched by.
>>>
>>> I really need help on this one!!
>>> Thanks,
>>> -Monica


 
Reply With Quote
 
MLD
Guest
Posts: n/a
 
      1st Jul 2005
That did it - and making it Private.
Thank you thank you!

"Michael Bauer" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
> Monica, please join "Set colItems=" and the next line into one line.
>
> --
> Viele Gruesse / Best regards
> Michael Bauer - MVP Outlook
>
>
>
> MLD wrote:
> > Michael - thank you so much!
> > One small proble, I am getting a syntax error at the line "Set
> > colItems=" ?? I directly copie dand pasted your text into the module
> > window, so i know I didn't mess it up that way.
> > Please advise?
> > -Monica
> > (Direct: (E-Mail Removed))
> >
> > "Michael Bauer" <(E-Mail Removed)> wrote in message
> > news:(E-Mail Removed)...
> >> Hi Monica,
> >>
> >> after you´ve imported your appointments you can use this sample. It
> >> searches for all non-private items in the standard calendar and makes
> >> them private.
> >>
> >> Public Function MakeAllAppointmentsPrivate()
> >> Dim colItems As Outlook.Items
> >> Dim sFilter As String
> >> Dim obj As Object
> >>
> >> sFilter = "[Sensitivity]<>2"
> >> Set colItems =
> >> Application.Session.GetDefaultFolder(olFolderCalendar).Items
> >> Set colItems = colItems.Restrict(sFilter)
> >> For Each obj In colItems
> >> If TypeOf obj Is Outlook.AppointmentItem Then
> >> With obj
> >> .Sensitivity = olPrivate
> >> .Save
> >> End With
> >> End If
> >> Next
> >> End Function
> >>
> >>
> >> --
> >> Viele Gruesse / Best regards
> >> Michael Bauer - MVP Outlook
> >>
> >>
> >>
> >> MLD wrote:
> >>> I'm helping a new user dump their calendar from a Palm Pilot, but
> >>> they want everythign to come into OLK 2003 marked as "Private". (The
> >>> little check box inthe lower right corner of the appointment window)
> >>> there are over 4300 items for 2005 alone! Is there a way for me to
> >>> do something, run something or write something that will
> >>> automatically mark the selected items? I have already discovered
> >>> that this "Private" checkbox is not a field that can be added to
> >>> the View, nor can it be filtered or searched by.
> >>>
> >>> I really need help on this one!!
> >>> Thanks,
> >>> -Monica

>



 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

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

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
Recurring appointments do not show up on my calendar view with single appointments purpose_drivenyp@yahoo.com Microsoft Outlook Calendar 0 29th Dec 2005 01:18 AM
Outlook 2003 not showing all appointments on user's calendar, but all appointments show up in shared view MasterOfTheHat Microsoft Outlook Calendar 2 4th Aug 2005 11:51 PM
Outlook 2003 not showing all appointments on user's calendar, but all appointments show up in shared view MasterOfTheHat Microsoft Outlook Calendar 0 2nd Aug 2005 05:14 PM
Can appointments be Automarked? MLD Microsoft Outlook Calendar 5 1st Jul 2005 02:48 PM
Exmerge appointments do not import correctly and/or problem opening appointments Arch Willingham Microsoft Outlook Calendar 0 19th Apr 2004 07:21 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 05:28 PM.