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

Notify calendar of other users



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old April 11th 09, 06:58 PM posted to microsoft.public.outlook.program_vba
Gerry Verschuuren
external usenet poster
 
Posts: 4
Default Notify calendar of other users

I know how to notify my own Outlook calendar from Access through VBA. But is
it also possible to notify the calendar of other users on the same network? I
realize it goes against security, but other users may want to be notified.

How can this be done in VBA from Access?

Thanks a lot.

Gerry
Ads
  #2  
Old April 12th 09, 04:30 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Notify calendar of other users

"Notify" in what sense? Display a reminder?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
I know how to notify my own Outlook calendar from Access through VBA. But
is
it also possible to notify the calendar of other users on the same
network? I
realize it goes against security, but other users may want to be notified.

How can this be done in VBA from Access?

Thanks a lot.

Gerry



  #3  
Old April 13th 09, 11:34 AM posted to microsoft.public.outlook.program_vba
Gerry Verschuuren
external usenet poster
 
Posts: 4
Default Notify calendar of other users

Yes, exactly.


"Dmitry Streblechenko" wrote:

"Notify" in what sense? Display a reminder?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
I know how to notify my own Outlook calendar from Access through VBA. But
is
it also possible to notify the calendar of other users on the same
network? I
realize it goes against security, but other users may want to be notified.

How can this be done in VBA from Access?

Thanks a lot.

Gerry




  #4  
Old April 13th 09, 05:46 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Notify calendar of other users

Can you create meeting request and send it?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
Yes, exactly.


"Dmitry Streblechenko" wrote:

"Notify" in what sense? Display a reminder?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
I know how to notify my own Outlook calendar from Access through VBA.
But
is
it also possible to notify the calendar of other users on the same
network? I
realize it goes against security, but other users may want to be
notified.

How can this be done in VBA from Access?

Thanks a lot.

Gerry






  #5  
Old April 13th 09, 06:45 PM posted to microsoft.public.outlook.program_vba
Gerry Verschuuren
external usenet poster
 
Posts: 4
Default Notify calendar of other users

That's my problem. I can send a meeting date to my own calendar, but I don't
know whether I can send one to someone else's calendar. I doubt, since that
would be security break.

"Dmitry Streblechenko" wrote:

Can you create meeting request and send it?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
Yes, exactly.


"Dmitry Streblechenko" wrote:

"Notify" in what sense? Display a reminder?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
I know how to notify my own Outlook calendar from Access through VBA.
But
is
it also possible to notify the calendar of other users on the same
network? I
realize it goes against security, but other users may want to be
notified.

How can this be done in VBA from Access?

Thanks a lot.

Gerry






  #6  
Old April 13th 09, 07:00 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Notify calendar of other users

Create an AppointmentItem object, add the recipient
(AppointmentItem.Recipients.Add), call AppointmentItem.Send
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
That's my problem. I can send a meeting date to my own calendar, but I
don't
know whether I can send one to someone else's calendar. I doubt, since
that
would be security break.

"Dmitry Streblechenko" wrote:

Can you create meeting request and send it?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
Yes, exactly.


"Dmitry Streblechenko" wrote:

"Notify" in what sense? Display a reminder?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote
in
message ...
I know how to notify my own Outlook calendar from Access through VBA.
But
is
it also possible to notify the calendar of other users on the same
network? I
realize it goes against security, but other users may want to be
notified.

How can this be done in VBA from Access?

Thanks a lot.

Gerry








  #7  
Old April 14th 09, 11:26 AM posted to microsoft.public.outlook.program_vba
Gerry Verschuuren
external usenet poster
 
Posts: 4
Default Notify calendar of other users

What would I type for Recipients??? A username, or what?

This is my code so far:
Sub OutlookCalendar(sSubject As String, dAlert As Date)
Dim oApplic As Outlook.Application, oAppoint As Outlook.AppointmentItem,
sRecip As String
Set oApplic = New Outlook.Application
Set oAppoint = oApplic.CreateItem(olAppointmentItem)
oAppoint.Subject = sSubject
oAppoint.Start = DateSerial(Year(dAlert), Month(dAlert), Day(dAlert)) +
TimeSerial(9, 0, 0)
oAppoint.ReminderPlaySound = True
'oAppoint.Save
sRecip = InputBox("Name of recipient")
oAppoint.Recipients.Add sRecip
If sRecip "" Then oAppoint.Send
oApplic.Quit
Set oApplic = Nothing
End Sub

"Dmitry Streblechenko" wrote:

Create an AppointmentItem object, add the recipient
(AppointmentItem.Recipients.Add), call AppointmentItem.Send
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
That's my problem. I can send a meeting date to my own calendar, but I
don't
know whether I can send one to someone else's calendar. I doubt, since
that
would be security break.

"Dmitry Streblechenko" wrote:

Can you create meeting request and send it?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
Yes, exactly.


"Dmitry Streblechenko" wrote:

"Notify" in what sense? Display a reminder?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote
in
message ...
I know how to notify my own Outlook calendar from Access through VBA.
But
is
it also possible to notify the calendar of other users on the same
network? I
realize it goes against security, but other users may want to be
notified.

How can this be done in VBA from Access?

Thanks a lot.

Gerry









  #8  
Old April 14th 09, 03:53 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Notify calendar of other users

Yes. name, e-mail address, etc. Whatever can be uniquely resolved to that
user's entry in GAL.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
What would I type for Recipients??? A username, or what?

This is my code so far:
Sub OutlookCalendar(sSubject As String, dAlert As Date)
Dim oApplic As Outlook.Application, oAppoint As
Outlook.AppointmentItem,
sRecip As String
Set oApplic = New Outlook.Application
Set oAppoint = oApplic.CreateItem(olAppointmentItem)
oAppoint.Subject = sSubject
oAppoint.Start = DateSerial(Year(dAlert), Month(dAlert), Day(dAlert)) +
TimeSerial(9, 0, 0)
oAppoint.ReminderPlaySound = True
'oAppoint.Save
sRecip = InputBox("Name of recipient")
oAppoint.Recipients.Add sRecip
If sRecip "" Then oAppoint.Send
oApplic.Quit
Set oApplic = Nothing
End Sub

"Dmitry Streblechenko" wrote:

Create an AppointmentItem object, add the recipient
(AppointmentItem.Recipients.Add), call AppointmentItem.Send
--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote in
message ...
That's my problem. I can send a meeting date to my own calendar, but I
don't
know whether I can send one to someone else's calendar. I doubt, since
that
would be security break.

"Dmitry Streblechenko" wrote:

Can you create meeting request and send it?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren" wrote
in
message ...
Yes, exactly.


"Dmitry Streblechenko" wrote:

"Notify" in what sense? Display a reminder?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Gerry Verschuuren"
wrote
in
message ...
I know how to notify my own Outlook calendar from Access through
VBA.
But
is
it also possible to notify the calendar of other users on the
same
network? I
realize it goes against security, but other users may want to be
notified.

How can this be done in VBA from Access?

Thanks a lot.

Gerry











 




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
How do I notify people of changes to a shared calendar aploades Outlook - Calandaring 0 April 8th 08 04:31 PM
Calendar notify Claudio Outlook - Calandaring 0 October 24th 07 06:03 PM
Notify for Calendar Items only Not Mail jklipper Outlook - Calandaring 1 November 8th 06 02:04 AM
notify of new event in shared calendar.. Dave Porter Outlook - Calandaring 0 June 19th 06 05:43 AM
Meeting Organizer deleted meeting, but chose not to notify users.. X-Jack Outlook - Calandaring 1 April 3rd 06 04:15 PM


All times are GMT +1. The time now is 02:03 PM.


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.