I am student, developing a windows application in C#.NET (.NET Framework 2.0) to send an email with voting buttons, so that receiver can repond by clicking...
Firstly, do you mean CDO 1.21 or some other flavor of CDO? In case of CDO 1.21, it is not supported in .Net. If you still use it, you would need to hack the...
I was working on this add in awhile back. I got back into it recently. I was wondering when i got looping through all my appointment items to display them into...
In the while loop, does hAppt.Start display the correct value for the recurrences? Note that occurrences (unless they are exceptions) do not physically exist, ...
in the while loop it seems to not even display anyinfo about the reoccuring appts. Kind of like you you were saying, like it dosen't even exist. So would i...
First of all thanks a lot for replying, I used Outlook Object Model, and sent email with voting buttons, but there is problem with security dispatch, each time...
Hi there, We are using Outlook 2003 and Exchange 2003. Since early this year we started having authentication issues with our customized Outlook Today Page and...
See http://outlookcode.com/article.aspx?id=52 _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Syed Hashmi Sent:...
Try something like the following: set Calendar = Application.Session.GetDefaultFolder(olFolderCalendar) set Items = Calendar.Items Items.IncludeRecurrences =...
I have cobbled some code together that I attach to a button that will move a selected email to a hard coded predefined folder. I would like the code to look...
I'm working on an unusual problem which looks like an Outlook bug (OL2003 SP2 & OL2007). It took me a while to reproduce precisely, and I'm tossing it out for...
In case anybody's interested, you can reproduce this with OutlookSpy. Just create a new message and use OutlookSpy to Add anything to the UserProperties...
Adding a UserProperty to a message always forces Outlook to send it with TNEF in my experience, no matter when you do it. The workaround is to use a ...
Hmm, that didn’t seem to work. GetIDsFromNames returned the expected prop, and I set it to zero, and HrSetOneProp returns S_OK, but when I look at the ...
You wouldn't notice it except for outside non-Outlook recipients, and even then it's pretty rare, because many Exchange servers strip outgoing TNEF. But I've...
Is there a setting on Exchange to tell it to strip TNEF? I'm not an Exchange expert but a quick glance through the usual options didn't reveal anything useful....
Set it earlier when you add the user property. You don't need to set PR_SEND_RICH_INFO since UseThef overrides everything else (PR_SEND_RICH_INFO, RTF flag in...
That didn't do it. If I check the value of the property at the end of OnSend, it's false, but sometime *after* my add-in is finished processing, Outlook resets...
Sue, OK, I published my custom form to the Personal Forms Library. Now I'm trying to install it on my other computer, my laptop, to make sure I know how to do...
Sounds like you skipped a step. On your original machine, after you publish the form to the Personal Forms library, use the Forms Manager to export the form as...
I am trying to program outlook very little for our own use. We are using shared outlook Address book. I want following funcionality. 1. I am using shared...
Hello, All, I want to read internet-header/mail-header that I got in mail using Outlook Object Model. If header is attached to the mail it can be seen in...
Not sure what version of Outlook you are using, but Outlook 97/2003 doesn't expose this property. You would have to use CDO 1.21/Redemption/Extended MAPI to...
Hello All, I am developing an Outlook Add-In, which on receiving any new mail call one method by Reflection of given assembly. Now this method which is being...
Hello all,
I've created a custom form for our HR dept. to use when we hire a new employee. The form is sent to a help desk mailbox and then picked up by a...