Hello world

  • Thread starter Thread starter Guy Cohen
  • Start date Start date
G

Guy Cohen

Hi all
I would like to start with a button that when you press it it goes through
all the messages in "inbox" and shows a messagebox with the subject of each
mail item.
If possible post a code - I played some and googled some and it does not
really work for me.
TIA
Guy
 
Am Wed, 1 Feb 2006 07:19:22 +0200 schrieb Guy Cohen:

dim obj as object
For each obj in Application.Session.GetDefaultFolder(olFolderInbox).Items
msgbox obj.subject
next
 
Am Wed, 1 Feb 2006 17:25:59 +0200 schrieb Guy Cohen:

Without code you could simply customize with a right click the toolbar, goto
Commands/Makros and drag the method´s name on to the toolbar. Therefor the
method must be declared as public, parameter aren´t allowed.
 
Back
Top