I have a custom form saved to a public folder. I'd like to make it more convenient by making it a toolbar button. I don't know how to write macros. I know that...
We have created an application in Outlook2003 (placed inside the VBAProject.otm file) In the program we have been using the DateTimePicker (mscomct2.ocx) Now...
... Unable to cast COM object of type 'System.__ComObject' to interface type 'MAPI.AppointmentItem'. This operation failed because the QueryInterface call on...
Rory A. Apperson
rapperson@...
Sep 7, 2007 6:50 pm
27267
Using .NET and CDO is cumbersome at best, as the .NET environment is strongly typed and CDO is, well, CDO. I have punched thousands of lines of CDO in VB6,...
I'm working on a problem I can't seem to get a handle on, and maybe somebody has an idea. It's an Outlook COM add-in in .NET (no VSTO or anything), designed to...
This is a known CDO 1.21 problem - it only returns MAPI.Appointment from the default Calendar folder when you loop through the folder items or (in case of...
Hi all, I am developing a snippet for extraction of msg propeties, I am using outlook 2003. Now my problem is the current mapi_utils does not extract the ...
I am creating a code to get the PR_HTML property of a .msg file, is it true that outlook2003 blocks any code that attempts to get that property? As stated...
Outlook 2003 blocks any CDO 1.21 code or external Outlook automation code that attempts to get item bodies. See http://www.outlookcode.com/article.aspx?ID=52...
What MAPI utils? In general, PR_HTML or PR_HTML_BODY may or may not be available. In general, HTML is stored in the PR_RTF_COMPRESSED property as RTF wrapped...
Hi Dmitry, My problem is that the PR_HTML property is available if I haven't save the msg file but if I do save it the property disappears and even if I use...
Redemption is not any different from any other IDIspatch friendly COM libraries (such as Outlook): just use #import to import the Redemption type library and...
Hello all, I'm developping an add-in for outlook with CSharp (.NET). And then I use Outlook Redemption to acces in some protected field of Outlook as email,...
... When I use Redemption all goes well about what i want to do, but, all mail I send triggers a security prompt. If I uninstall my add-in from outlook, all...
Hi I'm just starting to dip my toe in the water, and am wondering if there is a way that I can easily return a collection of folders in Exchange that have a...
And what is the relevant snippet of your code that triggers the security prompt? _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com]...
No, you would need to recursively walk through the folders hierarchy. _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of...
Dmitry, this sounds like the same issue (and same poster?) as at http://www.outlookcode.com/threads.aspx?forumid=4&messageid=24124. I suspect the Redemption...
I use RDo in to much part of my project: But i could show some: ####################""" private void SearchBox_TextChanged(object sender, EventArgs e) { //var ...
Yes, I have seen that code. Which line triggers the security prompt? Do you see the prompt when *your* code programmatically sends a message? What is that...
I use this code: //Applictaion Outlook Ol = new Outlook.ApplicationClass(); NS = (Outlook.NameSpace)Ol.GetNamespace("MAPI"); //le dossier InBox oInbox =...
You are accessing the MailItem.To property (sentItem.To). It needs to be accessed using Redemption.SafeMailItem object to avoid the security prompt. See the...
Hi all, How is this possible? Is there a way to retrieve the filenames of the attachments embedded or not if it is missing? I have attached the msg file that...
Are you retrieving PR_ATTACH_FILENAME from the attachment itself or the attachment table? In the latter case, MSG files expose a very limited set of properties...
Hi Dmitry, I am reading both of them, my function when getting the PR_ATTACH_FILENAME returns nothing. Plus when I view the attachments at the table it does...