Questions tagged [outlook-object-model]

The Outlook Object Model is the hierarchy of objects, methods and properties exposed by Outlook and available through VBA.

The Outlook Object Model is the hierarchy of objects, methods and properties exposed by Outlook and available through VBA.

Typically, Outlook.Application and Outlook.NameSpace are used to access folders and items within the Outlook Object Model.

The tag pertains to questions having to do with this hierarchy as well as its relationship with other Office object models. Typically this tag is used in tandem with other tags such as , , and .

Links:

66 questions
0
votes
1 answer

Outlook 2007 Add-In : Reuse built-in 'To...' control at my Form Region (WinForm)

Is it possible to add 'To...' 'Outlook.OlkTextBox' OlkTextBox control at my WinForm (form region), so it will work like outlook build-in (I don't want to create my own copy of outlook address email input)? If yes, could you somebody post a code…
0
votes
1 answer

COM Outlook addin ribbon buttons not responding in Korean Outlook 2010

I have a COM Outlook addin which implements a ribbon button in Outlook 2010. It's been working just fine for quite some time. Until someone tried to load the addin in the Korean version of Outlook. The ribbon buttons show up but do not do anything…
Dan G
  • 836
  • 11
  • 31
0
votes
2 answers

How can I add multiple email addresses in Outlook field "To" via C#?

Anybody know how can I add multiple email addresses in Outlook field "To" via C#? foreach (var to in mailTo) newMail.To += to + "; "; When I try do it how I described this above I receive next kind of…
misho
  • 1,195
  • 6
  • 16
  • 29
0
votes
1 answer

Displaying information bar in outlook application

I have developed an outlook plugin using atl. I want to show some information to user using yellow bar which comes just below ribbon of application. I have found one class for that in interop, but dont know how to use it. Its olkinfobar If i create…
Sahil Doshi
  • 1,073
  • 10
  • 23
0
votes
1 answer

Some Sender's Email Address Have An Extra 3 Hexadecimal Digits

I have an application using Outlook PIA reading from a client's Exchange server for some years. Lately, where a MailItem's SenderEmailType is "EX", the SenderEmailAddress has three of what looks like hexadecimal characters at the end. An…
Old Geezer
  • 14,854
  • 31
  • 111
  • 198
0
votes
1 answer

Outlook Save MHT - Include BCC, Exclude Embedded Items, Display Addresses

I use C# and the Outlook 2010 object model to save Outlook emails to MHT format (MIME HTML). I have no problem saving an email as an MHT. //mi is a MailItem //Save As MHT mi.SaveAs(@"D:\test.mht", OlSaveAsType.olMHTML); There are aspects…
Jacob Quisenberry
  • 1,131
  • 3
  • 20
  • 48
1 2 3 4
5