Hi, Is it technically possible to change the flag icon of the selected mail (to some customized icon)? I want to change the flag icon for selected mails after...
Kashyap, Vikram
vkashyap@...
Aug 1, 2006 9:02 am
26554
I’ve compared the EntryID returned by HrMAPIFindDefaultMsgStore with the one provided by MFCMAPI, and the values are identical. Regarding the C# code using...
Our beta testers are reporting that our Outlook extension intermittently causes the Outlook UI to crash. What extension behaviors have people seen that could...
Hi, For you information, I’m in charge of maintaining the Windows software section at ZDNet France online library. So, if you have released or know a...
Hi, All: So far, I have found that all the samples create a new menu group and insert into the Outlook (Business Contact Assistant and Hands-on labs). However,...
Try running OUtlook/Office setup and making sure that the VBScript support component for Outlook is included. ... Try running OUtlook/Office setup and making...
No answers for my queries. Still waiting eagerly for some gentleman to answer my query. Any help would be appreciated. With Regards Vikram Kashyap ...
Kashyap, Vikram
vkashyap@...
Aug 3, 2006 5:04 am
26561
There is no Application.DragEnter event in the Outlook Object Model. Drag/drop is not exposed at all in OOM. _____ From: outlook-dev@yahoogroups.com...
No, there is no way to do that. Please do not hijack an existing thread, create a new one - your question has nothing to do with drag/drop in Outlook; make...
Hi All, I am very close to my target that I wanted to achieve in my application. I have been successfully been able to retrieve the file name of the selected...
Kashyap, Vikram
vkashyap@...
Aug 3, 2006 11:33 am
26564
Hi All: I need some help from any one who know how to insert a menu button within the Actions menu button in Outlook. I have the following codes to insert a...
Hi All: I need some help from any one who know how to insert a menu button within the Actions menu button in Outlook. I have the following codes to locate a...
Folks, I just started trying to use Extended MAPI last Friday, as I'm trying to get around the Outlook security dialogs. I hope this isn't rude to post the...
You can find the menu id in OutlookSpy - open the item in Outlook, click the Inspector button on the OutlookSpy toolbar, go to the CommandBars tab. _____ From:...
Hi, I am looking for some help. To explain more on my issue, find the code below which is taking care of drag and drop from outlook to my app. DROPEFFECT...
Kashyap, Vikram
vkashyap@...
Aug 4, 2006 8:17 am
26569
Hi Dmitry: Using Outlookspy, I am able to get the “Actions” menu ID as 30130. Now, I always get the message “Value does not fall within the expected ...
FindControl expects an integer control id (30130), not a string ("30130"). _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On ...
Hi, Our client are using an application which generate an email which attchment and keep it in outlook outbox. when we open the message in outbox it is Plain...
Hi Dmitry, Thanks for your reply. I tried reading the file using IStream, but when I drag a mail and drop it on my applications it always pops up an error ...
Kashyap, Vikram
vkashyap@...
Aug 7, 2006 4:04 am
26574
What is the failing code exactly? I very much doubt that KB article has anything to do with this. How do you open that file? To you request write and/or...
Hi Dmitry, I am giving you my code snippet to get a clear idea. Please give a look on the comments in red color. if...
Kashyap, Vikram
vkashyap@...
Aug 7, 2006 5:39 am
26576
I am using sopen to open the file. new_file = sopen(file_name, O_RDWR | O_BINARY | O_CREAT, SH_DENYNO, S_IREAD | S_IWRITE); With Regards Vikram Kashyap ...
Kashyap, Vikram
vkashyap@...
Aug 7, 2006 5:47 am
26577
Try to get rid of the S_IWRITE bit. _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On Behalf Of Kashyap, Vikram Sent: Sunday,...
Dmitry, I tried that, but no effect, but as I explained below, unless until I did not have the file pointer returned in the STGMEDIUM structure, there is no...
Kashyap, Vikram
vkashyap@...
Aug 7, 2006 6:59 am
26579
Ah, sorry - looking at my old code, MSG files come in the TYMED_ISTORAGE format (CF_FILECONTENTS), not IStream. You can create your own Ole storage file using...
Hi there, I have the following code that gets the selected items from Outlook, the code is run in an Exchange Extension. For some reason the Category part...
What do you mean by rubbish? Do you mean you get a valid string, but it just contains garbage while the string length is right? Is the number of entries right?...
Thanks for answering, totally my fault here, I didn't Initialise OlItem^.Categories, so all sorted. It amazes me how much faster Extended Mapi is compared to...