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

Folder Events on delegates folder



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old September 19th 07, 03:19 AM posted to microsoft.public.outlook.program_vba
R
external usenet poster
 
Posts: 1
Default Folder Events on delegates folder

Hi again

Is it possible to trigger an event on a delegates non default folder?
I am trying to monitor when items are added in an additional mailbox folder
(not an outlook default folder).

I tried to expand on my last code posted here but am stuck again. After
searching outlookcode.com I found an article that may contain what I need
however the link is broken ( http://www.outlookcode.com/d/quarexe.htm )

Can someone please direct me? Many thanks.

MY CODE:

Private WithEvents oFolder As Items

Private Sub Application_Startup()
Dim objNS As NameSpace
Dim myRecipient As Outlook.Recipient
Dim oFolder As Outlook.MAPIFolder

Set objNS = Application.GetNamespace("MAPI")

Set myRecipient = objNS.CreateRecipient("Barrier Officer") 'added
myRecipient.Resolve 'added

' instantiate objects declared WithEvents and get folder ID
Set oFolder =
objNS.GetFolderFromID("000000007139C0E6E9F42F4A9F4 C380E252FAE020100EFA5DC80F953CF42BDA628FB9C468E630 000007383EA0000")
'If oFolder.Items.Count 0 Then MsgBox "new mail" 'used
to debug, this works
Set objNS = Nothing
End Sub

Private Sub oFolder_ItemAdd(ByVal Item As Object)
On Error Resume Next

' If Item.UnRead = True Then
' MsgBox "You have an unread item in Receipts folder"
' End If

If oFolder.Items.Count 0 Then MsgBox "New Email in Receipts folder!",
vbOKOnly + vbInformation

Set Item = Nothing
End Sub


Ads
  #2  
Old September 19th 07, 04:04 AM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Folder Events on delegates folder

Yes, you should be able to get events from another user's folder, if the folder is visible in the current user's Folder List. One problem with your code is that you have oFolder declared as an Items object, but are returning it from GetFolderFromID. It needs to be declared as a MAPIFolder object, with a separate Items object used for WithEvents. Also, you'll probably need to use both the folder's EntryID and its StoreID to return it from GetFolderFromID.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"R" wrote in message ...
Hi again

Is it possible to trigger an event on a delegates non default folder?
I am trying to monitor when items are added in an additional mailbox folder
(not an outlook default folder).

I tried to expand on my last code posted here but am stuck again. After
searching outlookcode.com I found an article that may contain what I need
however the link is broken ( http://www.outlookcode.com/d/quarexe.htm )

Can someone please direct me? Many thanks.

MY CODE:

Private WithEvents oFolder As Items

Private Sub Application_Startup()
Dim objNS As NameSpace
Dim myRecipient As Outlook.Recipient
Dim oFolder As Outlook.MAPIFolder

Set objNS = Application.GetNamespace("MAPI")

Set myRecipient = objNS.CreateRecipient("Barrier Officer") 'added
myRecipient.Resolve 'added

' instantiate objects declared WithEvents and get folder ID
Set oFolder =
objNS.GetFolderFromID("000000007139C0E6E9F42F4A9F4 C380E252FAE020100EFA5DC80F953CF42BDA628FB9C468E630 000007383EA0000")
'If oFolder.Items.Count 0 Then MsgBox "new mail" 'used
to debug, this works
Set objNS = Nothing
End Sub

Private Sub oFolder_ItemAdd(ByVal Item As Object)
On Error Resume Next

' If Item.UnRead = True Then
' MsgBox "You have an unread item in Receipts folder"
' End If

If oFolder.Items.Count 0 Then MsgBox "New Email in Receipts folder!",
vbOKOnly + vbInformation

Set Item = Nothing
End Sub


  #3  
Old September 19th 07, 05:22 AM posted to microsoft.public.outlook.program_vba
Sydney
external usenet poster
 
Posts: 24
Default Folder Events on delegates folder


I cannot use MAPIfolder as an event though? It does not accept it.
Do you have an example I can follow please???? Im hopeless without them.

Ive changed the event line to Private WithEvents FolderItems As Items and
have declared Dim oFolder As Outlook.MAPIFolder

Thanks


"Sue Mosher [MVP-Outlook]" wrote in message
...
Yes, you should be able to get events from another user's folder, if the
folder is visible in the current user's Folder List. One problem with your
code is that you have oFolder declared as an Items object, but are
returning it from GetFolderFromID. It needs to be declared as a MAPIFolder
object, with a separate Items object used for WithEvents. Also, you'll
probably need to use both the folder's EntryID and its StoreID to return it
from GetFolderFromID.

--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming: Jumpstart for Power
Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"R" wrote in message
...
Hi again

Is it possible to trigger an event on a delegates non default folder?
I am trying to monitor when items are added in an additional mailbox

folder
(not an outlook default folder).

I tried to expand on my last code posted here but am stuck again. After
searching outlookcode.com I found an article that may contain what I need
however the link is broken ( http://www.outlookcode.com/d/quarexe.htm )

Can someone please direct me? Many thanks.

MY CODE:

Private WithEvents oFolder As Items

Private Sub Application_Startup()
Dim objNS As NameSpace
Dim myRecipient As Outlook.Recipient
Dim oFolder As Outlook.MAPIFolder

Set objNS = Application.GetNamespace("MAPI")

Set myRecipient = objNS.CreateRecipient("Barrier Officer") 'added
myRecipient.Resolve 'added

' instantiate objects declared WithEvents and get folder ID
Set oFolder =

objNS.GetFolderFromID("000000007139C0E6E9F42F4A9F4 C380E252FAE020100EFA5DC80F
953CF42BDA628FB9C468E630000007383EA0000")
'If oFolder.Items.Count 0 Then MsgBox "new mail" 'used
to debug, this works
Set objNS = Nothing
End Sub

Private Sub oFolder_ItemAdd(ByVal Item As Object)
On Error Resume Next

' If Item.UnRead = True Then
' MsgBox "You have an unread item in Receipts folder"
' End If

If oFolder.Items.Count 0 Then MsgBox "New Email in Receipts folder!",
vbOKOnly + vbInformation

Set Item = Nothing



  #4  
Old September 19th 07, 01:38 PM posted to microsoft.public.outlook.program_vba
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default Folder Events on delegates folder

As I said, you need to have an Items object declared WithEvents in order to use its ItemAdd or other events:

Private WithEvents FolderItems As Items
Dim oFolder As Outlook.MAPIFolder

snip

strEntryID = "000000007139C0E6E9F42F4A9F4C380E252FAE020100EFA5D C80F
953CF42BDA628FB9C468E630000007383EA0000"
strStoreID = ????? ' you will need to determine this ID
Set oFolder = objNS.GetFolderFromID(strEntryID, strStoreID)
Set FolderItems = oFolder.Items


--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54


"Sydney" wrote in message ...

I cannot use MAPIfolder as an event though? It does not accept it.
Do you have an example I can follow please???? Im hopeless without them.

Ive changed the event line to Private WithEvents FolderItems As Items and
have declared Dim oFolder As Outlook.MAPIFolder

Thanks


"Sue Mosher [MVP-Outlook]" wrote in message
...
Yes, you should be able to get events from another user's folder, if the
folder is visible in the current user's Folder List. One problem with your
code is that you have oFolder declared as an Items object, but are
returning it from GetFolderFromID. It needs to be declared as a MAPIFolder
object, with a separate Items object used for WithEvents. Also, you'll
probably need to use both the folder's EntryID and its StoreID to return it
from GetFolderFromID.

"R" wrote in message
...
Hi again

Is it possible to trigger an event on a delegates non default folder?
I am trying to monitor when items are added in an additional mailbox

folder
(not an outlook default folder).

I tried to expand on my last code posted here but am stuck again. After
searching outlookcode.com I found an article that may contain what I need
however the link is broken ( http://www.outlookcode.com/d/quarexe.htm )

Can someone please direct me? Many thanks.

MY CODE:

Private WithEvents oFolder As Items

Private Sub Application_Startup()
Dim objNS As NameSpace
Dim myRecipient As Outlook.Recipient
Dim oFolder As Outlook.MAPIFolder

Set objNS = Application.GetNamespace("MAPI")

Set myRecipient = objNS.CreateRecipient("Barrier Officer") 'added
myRecipient.Resolve 'added

' instantiate objects declared WithEvents and get folder ID
Set oFolder =

objNS.GetFolderFromID("000000007139C0E6E9F42F4A9F4 C380E252FAE020100EFA5DC80F
953CF42BDA628FB9C468E630000007383EA0000")
'If oFolder.Items.Count 0 Then MsgBox "new mail" 'used
to debug, this works
Set objNS = Nothing
End Sub

Private Sub oFolder_ItemAdd(ByVal Item As Object)
On Error Resume Next

' If Item.UnRead = True Then
' MsgBox "You have an unread item in Receipts folder"
' End If

If oFolder.Items.Count 0 Then MsgBox "New Email in Receipts folder!",
vbOKOnly + vbInformation

Set Item = Nothing



 




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
Default Saving Folder for Contacts and Calendar events jdier Outlook - Using Contacts 1 April 27th 07 03:17 AM
Disappearing public folder calendar events HockeyMullet Outlook - Calandaring 0 April 13th 07 03:38 PM
activate contact folder from public folder with "show this folder as email address book using a prf file Frankie K. Outlook - Using Contacts 7 July 25th 06 05:37 PM
Create a search folder to look at all emails in one folder and selected criteria in other folders [email protected] Outlook - General Queries 1 April 10th 06 09:40 AM
Hooking events for new items in a mail folder mika Outlook - Using Forms 0 February 17th 06 08:58 AM


All times are GMT +1. The time now is 11:21 PM.


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