Questions tagged [outlook-2003]

Outlook 2003 is Microsoft's personal information management software.

Microsoft Outlook is a personal information manager (PIM) from Microsoft, available both as a separate application as well as a part of the Microsoft Office suite. It includes an email client, calendar and other personal information organization tools.

This version introduces new objects, methods and properties for use in VBA. It is also the last version to feature the classic toolbars most Office users are familiar with, replacing them with the new user interface (UI) called The Ribbon.

should be used for questions specific to the Outlook 2003 version of the program, to let SO users know your version. There is also a tag if you are asking about VBA.

Links:

136 questions
4
votes
6 answers

Outlook receives PHP HTML e-mail as code?

I made an HTML e-mail send with PHP, but my client receives this as pure code. Here is the PHP code to send the mail: $subject = 'HTML e-mail test'; $message = '

TEST

'; $headers =…
Jay Wit
  • 2,987
  • 7
  • 32
  • 34
3
votes
1 answer

Loop Through PSTs in Outlook 2003 with VBA

In Outlook 2007, I am able to loop through mails stores, including PSTs, using code like this: Dim stores As Outlook.stores Set stores = objNamespace.stores Dim store As Outlook.store For Each store In stores MsgBox…
Jacob Quisenberry
  • 1,131
  • 3
  • 20
  • 48
3
votes
1 answer

Getting messageID from email in Outlook VBA 2003

Is there a easy way to get the current shown (preferably selected) message-ID via VBA ? without having to buy Redemption or some other package.. I need to message ID so I can make a link to a web-application that reads the mail and does some other…
Sander
  • 1,402
  • 2
  • 21
  • 44
3
votes
2 answers

Outlook 2003 and Font-Sizes

I have a html email which works correctly in every client except Outlook 2003, where the links have underlines (even with text-decoration: none;) and the font-size changes to be smaller. Excerpt from code:
Barrie Reader
  • 10,647
  • 11
  • 71
  • 139
3
votes
1 answer

Count the number of emails each day in Outlook 2003?

This is for a little pet project of mine. I want to write a program that does some email analytics and tells you the number of emails coming in and out each day, as well as your percentages. Really, all I need to do to kick this off is write a .Net…
Mat Nadrofsky
  • 8,289
  • 8
  • 49
  • 73
3
votes
2 answers

VBA: Alternative to Restrict Method with categories?

My company just moved from outlook 2003 to 2010. We had a button that purple flagged messages and another one that send purple flagged messages to a server database by using flag filter. [FlagStatus] = 2 Since outlook 2010 doesn't use flag color…
trixrabbit
  • 259
  • 7
  • 22
3
votes
0 answers

How can I clear the cache in an Outlook client programmatically?

I am executing the following routine often in order to clear the local cache of many Outlook clients (Outlook 2003) in order to fix corrupted Forms stored on the users local drive. On the Tools menu, click Options, and then click the Other tab.…
Curtis Inderwiesche
  • 4,940
  • 19
  • 60
  • 82
3
votes
1 answer

Can I use VBA to unzip a file using the native windows unzip feature?

I'm using Outlook 2003 & I want to use a macro to unzip a file attachment on a message. Can I use the built-in zip file handling of windows in VBA to do this and if so, how? I'm running on Windows7 64 bit.
Glenn Slaven
  • 33,720
  • 26
  • 113
  • 165
3
votes
3 answers

OpenSharedItem with Outlook interop throws odd exception with Office 2003, works with Office 2008

I'm using the Office interop API to open a .msg file saved from outlook, and to then show a reply window to allow the user to reply to it. When running Office 2003, the OpenSharedItem(pathToMSGFile); call throws the following exception: Unhandled…
PhonicUK
  • 13,486
  • 4
  • 43
  • 62
3
votes
1 answer

How to get the recipient addresses within an IPM.DistList?

I'm trying to get the recipient addresses within an IPM.DistList that is stored in a public folder (of type contacts) in Exchange 2003. The typeName of the object is a Message (with a parent object being a Messages collection) and the messageType is…
Jeremy
  • 307
  • 1
  • 6
  • 24
3
votes
2 answers

VSTO: Install an add-in to Outlook Office 2003

I posted an article here (How do I set permissions on my VSTO outlook add-in?) and I was able to build my installer. I thought that once the installer built itself, everything would work fine. I was wrong. It works on about half of the PC's I've…
Jerry
  • 4,507
  • 9
  • 50
  • 79
2
votes
0 answers

How to deploy extensibility.dll for Outlook 2003 plug-in

I have to deploy Outlook 2003 COm plug-in. I have .Net4.0 framework and PIA for office 2003 installed on my machine. While registering the plugin using RegASM.exe myplugin.dll , I am getting error RegAsm : error RA0000 : Could not load file or…
Vinit
  • 31
  • 2
2
votes
1 answer

Using Redemption (Outlook) with a user other than the logged in user - and getting errors

I'm using Redemption dll (http://www.dimastr.com/redemption/) and I've created an exe that accesses my mail box. I run the exe in Windows Scheduler under my username and it works fine, I get an email sent to me (see below code). When I change the…
Paul Rowland
  • 8,244
  • 12
  • 55
  • 76
2
votes
0 answers

Get Exchange folder size using Redemption.dll fails when used from Outlook2007

I am using Redemption.dll (Version 4.7.0.1026- latest) in an Outook (2003/2007) Add-in where i need to retrieve the exchange mail box size. To get the folder size, I am using the function get_Fields(): foreach (RDOStore store in…
Kapil
  • 9,469
  • 10
  • 40
  • 53
2
votes
1 answer

What Microsoft.Office.Interop.Outlook version works with Outlook 2003?

I'm creating a COM add-in for Outlook and I'm trying to target all 'still used' versions of Outlook: 2003, 2007, 2010. However, the add-in's UI (which is rather simple, a CommandBar) doesn't display in Outlook 2003. The version of the…
Alex
  • 7,432
  • 20
  • 75
  • 118
1
2
3
9 10