outlook-2007

Outlook 2007 - Custom properties dissapear on send where they arrive

Hello, I have an outlook add in project that sets custom properties to mails in the inspector. I have a mail item in Outlook 2007 with custom properties, I try and send it to my own address, and then receive it without the custom properties. I have verified that the user properties are in the mail in the send event. I read somewhere that...

VSTO Outlook 2007 Add-in Context Menu CommandBarButton click event

I need to add a button to the context menu of the inbox. I have this working fine. What I need to figure out is in the implementation of the event handler how do I determine which item/items was clicked? private void AddIn_Startup(object sender, EventArgs e) { Application.ItemContextMenuDisplay += Application_ItemContextMenuDispl...

OWA 2007 Meeting Workspace + SharePoint 2007 Issue

Hi All, I don't see Meeting Workspace Option in OWA 2007 Basic or Premium. Is it by design? Also, When I setup a meeting from Outlook 2007 and also create a meeting workspace in sharepoint, all the attendees shows up as optional in Attendees List in SharePoint site. One more issue is that when an attendee accepts the meeting from OWA...

Adding new line to button's title/description in outlook 2007 ribbon

Hi I am developing an add-in for Outlook ribbon 2007 using ATL/C++. The ribbon tab contains a dynamic menu which has a list of buttons generated at run-time. I would like to add new line to the button's label and/or description but not sure how. I tried adding newline character ("\n") to the button's label and description but it looks l...

Export the outlook calendar meetings/Appointments to a Database

Hello All, I am having a request that if there is an option or a tool that I can get the microsoft outlook calendar meetings/Appointments exported immediately and automatically to a database(Access DB/ Oracle)? Is there is a way to do that? Thanks ...

Opening new appt in public calendar on MS Outlook

I need to automatically pull up a new appointment in Microsoft Outlook (I'm making a script so automate some things). I use this: Run, "%programfiles%\Microsoft Office\Office12\Outlook.exe" /c ipm.appointment which brings up my personal outlook calendar. I need it to open up a new appointment for my public (corporate environment)...

Regular Expression Rules in Outlook 2007?

Is it possible to create rules in Outlook 2007 based on a regex string? I'm trying to add a filter for messages containing a string such as: 4000-10, a four digit number followed by a dash and then a two digit number, which can be anything from 0000-00 to 9999-99. I was using this as a regex: \b[0-9]{4}\-[0-9]{2}\b but the filter isn...

outlook add-in not translated

I have created an outlook 2007 add-in with localization support (using resources files). on start up of the add-in i set the current culture and current ui culture to spanish. if i run from visual studio, my add-in is fine and is translated to spanish. when i install my add-in and run it from outlook, it stays in english. any ideas? ...

SharePoint adds line breaks <BR> to messages received from Outlook

I recently created a new discussion list in SharePoint for our group, and I set it to be able to receive emails. The issue is when the SharePoint discussion list receives an email it adds unwanted line breaks (in the form of ) in between each line. I wanted to know if there was script that could be run from my end to apply to emails be...

How do I display future appointments in Outlook with a DASL filter

I would like to customise my Outlook 2007 calendar view so that it only displays future appointments. What's the DASL syntax to say ">= "today"? ...

C# - AddStore not working properly in Outlook

I have been attempting this all morning (VS2K10, OL2K7, .NET 3.5) and my PSTs never attach. I've modified the path to include escaped slashes, no dice. I occasionally see the PST get added then disappear when I hit the command bar button for which I am trying to program. Here is a snip of my code: void b_removedPSTs_Click(Office.Comm...

C# - Looking to capture an event when a store is added/removed in Outlook

I am writing an add-in that needs to log when a PST is added/removed via the "Data File Management" menu or through AddStore/RemoveStore. I have been having difficulty on finding documentation on how to capture these events. Advice is greatly appreciated. Thanks, Larry EDIT: Here's my dummy code that's not working: using System; us...

Copy email to the clipboard with Outlook VBA

How do I copy an email to the clipboard and then paste it into excel with the tables intact? I am using Outlook 2007 and I want to do the equivalent of "Click on email > Select All > Copy > Switch to Excel > Select Cell > Paste". I have the Excel Object Model pretty well figured out, but have no experience in Outlook other than...

Send Message with Custom Properties with Redemption

Hello. I’m using Redemption.dll to set custom properties to my messages with set_Filed() and get_field() in C#. Everything works perfectly until the moment I send my messages. From Outlook I use RDOMail.Send() and this sent the message to the Drafts folder. Then I read in the Redemption FAQ that I should use the IMessage::Submit() metho...

How to create a link to a location in the body of an email in Outlook

Hi, Is there a way to create a hyperlink in an email that refers to another location within the email? All intended recipients are all Outlook users, so if there is a solution for only that case, even that will be great! Thanks! ...