Thanks a lot for the information. Is it possible to enable the VBScript code in the one-off forms? Are there ways to implement the changes mentioned below...
I have an Outlook Add-In which is a shim dll launching the actual handler written in C##. It worked reasonably well when it was compiled with .NET 1.1 and...
i have 2 email ac conf. in outlook. the folder names goes like:- 1) kedar <- configured later(IMAP) 2) Personal Folders <- originally default outlook(POP3) now...
Default account and default information store are not the same thing. GetDefaultFolder works against the default store. An IMAP account's proxy PST file cannot...
Thank you for the link. I want some help in formulas for validations: 1) How to check whether the entered number is a valid number? 2) How to check whether...
1) What do you consider "a valid number" for the purpose of your application? Any number entered for a number property value is considered valid as far as...
I'm trying to understand a problem I'm having with attachments in messages originally composed with RTF. Here's how to basically reproduce what I'm seeing...
RTF -> HTML conversion is internal to Outlook, it cannot be tweaked AFAIK. _____ From: outlook-dev@yahoogroups.com [mailto:outlook-dev@yahoogroups.com] On ...
Yeah. I'd be just as happy if I could tweak the RTF and then have the OOM BodyHTML property updated accordingly, but no matter what I do, it doesn't sync up...
Hi We are trying to use the code shown below to save an appointment in another users shared calendar. When the code is run from the custom form, stored in the...
More detailed description: Outlook loads COM Add-in shim dll and calls OnConnection(). The shim dll creates AppDomain, creates instance of IDTExtensibility2 ...
Hi all, This is probably a very basic question, sorry if this has been asked a number of times - I couldn't find it in the archives though. I would like to...
Microsoft just released it's Exchange update tool this past Friday. I was wondering if anyone has applied all of the DST "patches" to their environments over...
Gomez, Mary Lou
marylou.gomez@...
Feb 12, 2007 6:45 pm
26941
Hi, I have a query and I hope you can help on this. I got user-defined views of contacts also displaying user-defined controls which I implemented on a contact...
Hi, I'm posting this question as a result of the discussion on this thread: http://tech.groups.yahoo.com/group/outlook-users/message/47409 Very briefly, I am...
Hi, I don't have a background in VB or Outlook programming so can you explain how this would be implemented so that it would execute that code apon drag and...
You would have to handle the ItemAdd event for the Items collection for each folder where you wanted to track the items being added. That of course would have...
Does anyone know if there is a simple way to show the dialog displayed when user hits Edit > Move to Folder... Hopefully just a quick API call?? ++ Also what's...
Namespace.PickFolder. Outlook doesn't provide a direct way to determine the user's font preference. It's stored in the registry, assuming the user is not using...
The StoreID: Item.Parent.StoreId with getFolder method DON'T show the folder where the item is located. Is correct ? Rino ... Da: outlook-dev@yahoogroups.com...
Hello everyone... i have couple of questions 1. how to programmatically retrive E-mail address from an local contact which is actually an Exchange entry. one...
Item.Parent is the name of folfer. Thereis a method to show the folder with Item.Parent .GetFolderFromID don't work GetFolderFromID(Item.Parent) Thank for help...
Item.Parent property is not a string, it is MAPIFolder, whose default property happens to be Name, hence you see the folder name when you call MsgBox...
Hi there, In Older versions of Outlook (2K - 03) I could (if Word was email editor) use word automation to add text to an email using a com addin. MySelection...