We are having a problem with Outlook 2003 and text messages. When a text message is received (for example, a message generated by our SQL server), Outlook is...
You might want to look at the information at http://www.outlookcode.com/d/customprint.htm. Basically, you'll need to iterate the tasks and set the value of...
Does anyone know if there is a way to add the Billing Information and Mileage fields to the Task Tab in the default Task Form? Or will I have to create a...
I'm not sure if this will help since I never found a solution, but it may give you a line of enquiry. I had a similar problem that when a programmatically...
Hi All, I m going to develop a program which will Report about All file's Accessed by outlook 2003. For this i am hooking winodows API's like CreateFileW,...
our computer dept setup a public calendar folder for our dept. the idea was to use it for recording staff holiday etc. the computer dept set it up so that...
Is there a way to capture when a user deletes a folder either using the 'delete key' or by bringing up the menu when they right click on the folder? I need a...
Repeat message previously posted on Outlook-users forum without response. Can anybody help with the following. I am familiar with VBA but not within Outlook....
Hi All, i have extendet the default appointment form to select a room form a combobox. The room is added to the attendees list as a resource via vb script. The...
As the first Tuesday of the month can appear after the First Sunday, you will have to enter it manually. I suppose a complicated script could book the meeting,...
I am writing an Outlook Add-In for Outlook 2003. I have a mapi class that reads properties from an AddressEntry.MAPIOBJECT. I get an exeption when reading in...
Which line exactly fails and what property you are trying to read? 1. Instead of checking whether HrGetOneProp returns a NULL PSPropValue, you must check its...
Thanks for your response. I added the check for the S_OK onto the HrGetOneProp, which now behaves correctly if I query the object for a field that is not in...
Thank you for your hints. Finally i solved the problem. I was so fixed on the code an exchange functionality that i didn't realized that the "Standard"...
Again, to access the property values, you must access the PSPropValue.Value structure members, *not* the whole structure. E.g. to get back an ANSI string prop...
Hi all! I'm new to this message board and have a quick and easy question. I am currently working on a simple Outlook form to use as a "Metadata Security...
That would only apply to PT_STRING8 properties. The Value member is a union in C++, which in C# would mean that you need to define Value as another struct with...