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 » Search Forums
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Showing results 1 to 25 of 250
Search took 2.35 seconds.
Search: Posts made by: Dmitry Streblechenko
Forum: Add-ins for Outlook May 24th 10, 07:38 PM Posted to microsoft.public.outlook.program_addins
Replies: 2
Views: 2,357
Exchange Client Extensions in Outlook 2010?

Gone in Outlook 2010...

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"CharlieD" wrote in message...
Forum: Outlook and VBA May 6th 10, 06:51 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 681
Accessing folder 'Other Contacts'

Look at the Namespace.GetSharedDefaultFolder method.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Rudy"...
Forum: Outlook and VBA April 30th 10, 06:39 PM Posted to microsoft.public.outlook.program_vba
Replies: 23
Views: 3,804
Outlook Macro to get Exchange Info from Mail

Session is also an intrinsic variable in VBA. Try the following (it does
work)

PR_LOCALITY = &H3A27001E

Set cdoSession = CreateObject("MAPI.Session")

Set temp =...
Forum: Outlook and VBA April 29th 10, 01:21 AM Posted to microsoft.public.outlook.program_vba
Replies: 9
Views: 1,787
The signature is also inserted if you touch the MailItem.

set DummyVariable = MailItem.GetInspector

is all it takes

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
Forum: Outlook and VBA April 28th 10, 12:22 AM Posted to microsoft.public.outlook.program_vba
Replies: 2
Views: 1,049
64-bit version of Redemption?

64 bit version is scheduled to be released in the Summer.
A beta version will be avilable in a month or so.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI...
Forum: Outlook and VBA April 28th 10, 12:21 AM Posted to microsoft.public.outlook.program_vba
Replies: 23
Views: 3,804
Outlook Macro to get Exchange Info from Mail

That line contains two statements. One is reading the property. Another one
is setting it. Can you break that line in two to see which one fails?

set temp =...
Forum: Outlook and VBA April 26th 10, 07:08 PM Posted to microsoft.public.outlook.program_vba
Replies: 23
Views: 3,804
Outlook Macro to get Exchange Info from Mail

Do you get that error on reading the Application.Session.MAPIOBJECT or
setting the Session.MAPIOBJECT property.
Where does your code run?

--
Dmitry Streblechenko...
Forum: Add-ins for Outlook April 22nd 10, 07:02 AM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,534
Looking for email address under ItemSend event

No, call Namespace.GetDefaultFolder(olFolderSentMail) (get back MAPIFolder), read MAPIFolder.Items property and store it in a global (class) variable.
You will need Items.ItemAdd event

--
Dmitry...
Forum: Outlook and VBA April 22nd 10, 06:59 AM Posted to microsoft.public.outlook.program_vba
Replies: 23
Views: 3,804
Outlook Macro to get Exchange Info from Mail

I don't have CDO 1.21 installed here, so the script below uses Redemption


set Session = CreateObject("Redemption.RDOSession")
Session.MAPIOBJECT = Application.Session.MAPIOBJECT
for each Item...
Forum: Outlook and VBA April 20th 10, 06:39 PM Posted to microsoft.public.outlook.program_vba
Replies: 23
Views: 3,804
Outlook Macro to get Exchange Info from Mail

Create an instance of the MAPI.Session object,
set Session.MAPIOBJECT property to Namespace.MAPIOBJECT from OOM
Reopen the message in CDO 1.21 using Session.GetMessage and the valeu of teh...
Forum: Outlook and VBA April 20th 10, 06:15 PM Posted to microsoft.public.outlook.program_vba
Replies: 23
Views: 3,804
Outlook Macro to get Exchange Info from Mail

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"_M_a_t_t_" wrote in message...
Forum: Add-ins for Outlook April 19th 10, 08:08 PM Posted to microsoft.public.outlook.program_addins
Replies: 1
Views: 1,098
using TypeOf to determine [OOM] Class

That is as good as it gets... If the items is not one of the sepcial items
(such as RDOAppointmentItem), treat it as a generic RDOMail. object.

--
Dmitry Streblechenko...
Forum: Add-ins for Outlook April 19th 10, 08:05 PM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,534
Looking for email address under ItemSend event

Byt he time ItemSEnt evenbt is fired, the sender properties (RDOMail.Sender) are not yet set. That will happen later when teh mesage is moved to the Sent Items folder. You can use Items.ItemAdd even...
Forum: Outlook and VBA April 19th 10, 07:30 PM Posted to microsoft.public.outlook.program_vba
Replies: 3
Views: 982
Compile error..

Click Tools | References in the VBA editor.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Peter" ...
Forum: Outlook and VBA April 18th 10, 01:37 AM Posted to microsoft.public.outlook.program_vba
Replies: 3
Views: 982
Compile error..

Which line produces that error?
Did you add Outlook to your project references?
Alse, the line
Set objOutlook = CreateObject
must be changed to
Set objOutlook =...
Forum: Outlook and VBA April 16th 10, 11:27 PM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 741
How to avoid an Outlook message that pops up

See http://outlookcode.com/article.aspx?id=52

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
-
"Craig" ...
Forum: Add-ins for Outlook April 15th 10, 07:29 AM Posted to microsoft.public.outlook.program_addins
Replies: 5
Views: 1,534
Looking for email address under ItemSend event

Can you access othe rproperties (such as PR_DISPLAY_NAME)?
Note that PR_SMTP_ADDRESS is not guarentee to be present.
Secondly, keep in mind that MAPIUtils object is being deprecated, use RDOSession...
Forum: Add-ins for Outlook April 15th 10, 07:24 AM Posted to microsoft.public.outlook.program_addins
Replies: 9
Views: 1,604
Modal form is not properly working on inspector

See my reply to your question on the Redemption mailing list
(http://tech.groups.yahoo.com/group/Outlook-Redemption/)

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook,...
Forum: Add-ins for Outlook April 15th 10, 07:23 AM Posted to microsoft.public.outlook.program_addins
Replies: 9
Views: 1,601
ActiveExplorer return NULL on new Window user login and running Outlook first time

Also note that there won't be any explorers if Outlook is launched
programmatically withour diaplysing any UI or if, for example, mailto link
opens an inspector t oedit a new e-mail (no...
Forum: Outlook and VBA April 15th 10, 07:20 AM Posted to microsoft.public.outlook.program_vba
Replies: 23
Views: 3,804
Outlook Macro to get Exchange Info from Mail

So d oyo uwant to access EX specific properties of a contact that was create
in the hContacts folder from one of the GAL entries?
Or EX properties of a message sender/recipient?

--
Dmitry...
Forum: Add-ins for Outlook April 7th 10, 06:36 AM Posted to microsoft.public.outlook.program_addins
Replies: 2
Views: 1,606
DistList members are not resolved if the contact is not in default folder

That folder must be used by OAB for the name resolution to work - set the
MAPIFolder.ShowAsOutlookAB property to true.

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook,...
Forum: Outlook - Using Forms April 7th 10, 04:55 AM Posted to microsoft.public.outlook.program_forms
Replies: 1
Views: 637
How can I view a german email in outlook 2002?

How do you set the encoding?
Do you set the plain text Body or HTMLBody property?

--
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer...
Forum: Outlook and VBA April 7th 10, 04:54 AM Posted to microsoft.public.outlook.program_vba
Replies: 2
Views: 731
Create one-off that does send winmail.dat

When exactly do you add the recipients? When yo uare using Extended MAPi
(be that from ECE or from MailItem.MAPIOBJECT), OOM has hard time seeing the
changes, but there are some workarounds.

--...
Forum: Outlook and VBA April 7th 10, 04:51 AM Posted to microsoft.public.outlook.program_vba
Replies: 2
Views: 691
Message automation: message size growth

Did you look at the message in OutlookSpy (click IMessage)? Do you see any
large binary properties/ What are the PR_BODY, PR_HTML, PR_RTF_COMPRESSED
sizes?
How about the attachments...
Forum: Outlook and VBA March 31st 10, 12:52 AM Posted to microsoft.public.outlook.program_vba
Replies: 1
Views: 832
Reading another mailbox Address

What exactly does not work?
Are you trying to retrieve the SMTP address of an EX user when the AD
hosting that user detaisl is not available?
You cannot do that: the primary SMTP address is stored...
Showing results 1 to 25 of 250

 
Forum Jump

All times are GMT +1. The time now is 12:42 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.