ThreadLast AuthorMessages
read/total
Date
Outlook 2003 error message
Vaelek
0 / 2 06 Dec 2007
Look in Tools > Options > "Other" Tab > Advanced Options Either the Add-In Manager or COM Add-Ins button should give you the option to disable or remove the addin. "jandersonwyant" wrote: > Every time I open Outlook 2003, I'm greeted with the following error message: > > "C: Documents and Settings\jwyant\Application > Data\Microsoft\Add-ins\C:WINDOWS\system32\cabget.dll’ is...
Setting the font of the message body
Vaelek
0 / 3 06 Dec 2007
This is Outlook 2003. I am using HTML format but I do not use any tags. My function looks as such: Outlook.ApplicationClass olApp = new ApplicationClass(); Outlook.MailItem mailitem = (Outlook.MailItem)olApp.CreateItem(Outlook.OlItemType.olMailItem); mailitem.BodyFormat = OlBodyFormat.olFormatHTML; mailitem.Subject = "Incident "; mailitem.Body =...
How to disable the Pop up of outlook warning when use AddStore
Dmitry Streblechenko
0 / 12 06 Dec 2007
No, all of your options are listed at http://outlookcode.com/article.aspx?id=52 The only way to avoid the prompts is to either use Extended MAPI (cannot do that directly in a script, so third party libraies are the only solution), or run your code in a COM add-in (you can write it in VB6 or any .Net language), which gives you a trusted version of the Outlook.Application which does...
Issue with VS 2008 RTM Outlook Addin Region will not load....
Calvin Luttrell /Proj...
0 / 1 05 Dec 2007
Hello, I am experiencing an issue with Outlook 2007 on Vista using the VSTO feature of the RTM Visual Studio 2008. I added a Outlook 2007 add-in and added a new Form Region for Outlook. I added a form and put some things on it to see what it would look like. It loaded the region in the reading pane for the Inbox and then for Contacts but I am having the same behavior. The issue is...
outlook program add-ins
Ken Slovak - [MVP - O...
0 / 2 05 Dec 2007
Use the Inbox.Items.ItemAdd event or the NewMailEx event to get the new items as they come in and check the item.SenderEmailAddress property if you are using Outlook 2003 or later. See www.outlookcode.com for various samples of handling those events. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended...
Drop down date control
Andrei Smolin [Add-in...
0 / 2 04 Dec 2007
Hi, There's no easy way. But see http://www.add-in-express.com/outlook-extension/. Regards from Belarus (GMT+2), Andrei Smolin Add-in Express Team Leader "Windoze" <letoatreides2@gmail.com> wrote in message news:OA3dnZlNIHA.6108@TK2MSFTNGP03.phx.gbl... > Hi > > Is there an easy way possibly using C++ GDI/Windowing calls in an ATL > Outlook add in to create a drop down...
Programatically make CommandBarComboBox open
goran
0 / 5 03 Dec 2007
Thanks a lot for your help. "Ken Slovak - [MVP - Outlook]" wrote: > Not natively. Your choices are button, combo and popup. > > Some 3rd party libraries or frameworks such as Add-In Express claim to let > you use any form from the collection available for managed code in Windows > Forms as Outlook controls for menus/toolbars but then you're locked into > that framework, for good...
Add-in volume pricing
Ken Slovak - [MVP - O...
0 / 3 03 Dec 2007
You might want to research this on the MS Web site, doing a search for licensing terms. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Mark B" <not@telling.com> wrote in message news:OEju8k5MIHA.4308@TK2MSFTNGP05.phx.gbl... >...
Extend context menu
Ken Slovak - [MVP - O...
0 / 2 30 Nov 2007
You can't unless it's a WordMail item and the version of Outlook is Outlook 2003 or earlier. In that case you can get the CommandBars collection in the OnUpdate event and search for the context menu and add to it. Otherwise it can't be done. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders,...
VBA Outlook Appointment Item "Start" Variables?
Adam Flippo
0 / 1 30 Nov 2007
Hi Michael, thanks so much for your help! Take Care, Adam...
Outlook 2007 Beta and vpmsece3.dll
:(
0 / 1 29 Nov 2007
if you are unfortunate like me to have Vista users :( Then you will need to remove the add in from tools, trusted things, add ins, mange add ins. run back to XP...
VBA Outlook Appointment Item "Start" Variables?
Adam Flippo
0 / 1 29 Nov 2007
Hello all, I have been working on an Outlook->Excel calender export makro based on the well known Helen Feddema macro "Exporting Calendar Items to Excel". Thank you very much to Helen for a very intuitive and easy to use macro! I do, however have one question about possible Appointment.start and .end object variables: Is it possible to change the output of the start object to the...
working with status bar in outlook
Michael Bauer [MVP - ...
0 / 2 28 Nov 2007
You would have to use a lot of Win32 API calls, and then Outlook upates the status bar every second. So, no way. -- Best regards Michael Bauer - MVP Outlook Synchronize Color Categories & Ensure that Every Item Gets Categorized: <http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6> Am Wed, 28 Nov 2007 01:57:01 -0800 schrieb robink: > Hi all, > I want...
Junk Reporting Tool disappeared
Ken Slovak - [MVP - O...
0 / 2 27 Nov 2007
Sounds like it was disabled by Outlook. Select Help, About Microsoft Office Outlook, Disabled Items button. If it's listed there highlight it and click Enable. Exit and restart Outlook. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm...
Same Problem
Koen Vosters
0 / 1 27 Nov 2007
We are experiencing the same problem. Can you provide a link to the previous post? EggHeadCafe - .NET Developer Portal of Choice http://www.eggheadcafe.com...
Problem with multiple Inspectors
Voyager
0 / 1 26 Nov 2007
Hi! I'm developing a Addin in VC++ to add a toolbar (and a button) to the email Inspector... I Advise a "new inspector" on the NewInspector Event, adding it the "Activate", "Deactivate" and "Close" event. But the same code crashes when a 2nd Inspector is created (2 "new mail" windows) ... Could someone help me? void __stdcall CAddin::OnInspectors_NewInspector(IDispatch* Ctrl){ .....
PartialCompletion error calling CopyMessages on IMAPIFolder
rvangeldrop
0 / 13 25 Nov 2007
Hello Dmitry, It seems to work fine now, thanks. rvangeldrop "Dmitry Streblechenko" wrote: > Try to copy messages in chunks of 100 or less. > > Dmitry Streblechenko (MVP) > http://www.dimastr.com/ > OutlookSpy - Outlook, CDO > and MAPI Developer Tool > > "rvangeldrop" <rvangeldrop@discussions.microsoft.com> wrote in message >...
michael lalonde
Mike Lalonde
0 / 1 24 Nov 2007
r http://www.freewebs.com/wandererartificialstupidity/ http://www.geocities.com/wandererartificialstupidity http://wandererartificialstupidity.tripod.com http://members.aol.com/lalonm/ http://www.wanderers.freewebweb.com/ michael lalonde news michael lalonde sudbury michael lalonde photos michael lalonde sudbury photos michael lalonde sudbury news sd...
show more letters in desktopmessages
Ken Slovak - [MVP - O...
0 / 3 24 Nov 2007
Not possible. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Shearer" <Shearer@discussions.microsoft.com> wrote in message news:F825B1C7-8A25-49B4-84F7-8A39162A8B6C@microsoft.com... > > > "Shearer" wrote: > >> Hi >> about...
Add-in Load Fails When Disconnected
Ken Slovak - [MVP - O...
0 / 2 24 Nov 2007
Publish locally. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm "Berkley" <Berkley@discussions.microsoft.com> wrote in message news:F400099E-9570-4EC2-B8AA-C7CBEB212E56@microsoft.com... > Hello all, > > I have been working on...
Pop-up window or balloon may be?..
Ken Slovak - [MVP - O...
0 / 2 24 Nov 2007
That's not exposed in the Outlook object model. You'd have to pop up a 3rd party control that has the same effect. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech.com/products.htm <al.skidan@gmail.com> wrote in message...
Full email addres for mailItem.To
Michael Bauer [MVP - ...
0 / 3 23 Nov 2007
If the address is resolved it shows the display name, which you can determine yourself. So, that might or might not be the name. -- Best regards Michael Bauer - MVP Outlook Synchronize Color Categories & Ensure that Every Item Gets Categorized: <http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6> Am Thu, 22 Nov 2007 09:13:01 -0800 (PST) schrieb...
Image not displaying when applying stationery via code
John
0 / 1 21 Nov 2007
Hi I am assigning stationery via code to a new email as below. The problem is that the image included in stationery does not appear in the sent mail. What is the problem and how can I fix it? There must be someone who has done this sort of thing, and outlook being around for so long someone must have figured a way to do this. Thanks Regards Code ==== Set fso =...
More on UserProperties
Steve
0 / 14 20 Nov 2007
I just realized an oddity on the test machine: Office Communicator 2007 is installed with Live Communication Server 2007. So I thought I would perform a detect and repair for the heck of it removing all customization returning to default settings... It resolved the get/set property problem using the OOM. But this doesn't explain why. Undoubtly I will have to supoprt systems...
Outlook Add-in only loading on my development machine
Ken Slovak - [MVP - O...
0 / 12 20 Nov 2007
Is it possible that the addin problems are on Vista machines, possibly where UAC has been turned off? Any difference if you change the registration from HKLM to HKCU? For the VS2003 code are you using any Framework 1.1 methods that are deprecated in Framework 2.0 in case those machines are starting Framework 2.0 and your code ends up using that version? Have you tested that code...
How to turn off auto decrypt property in outlook?
umut
0 / 1 20 Nov 2007
Hello, I am using office 2003. I can turn off Auto Encription in outlook but i can't turn off Auto Decryption. Are there any way to turn off it? Thanks in advance, Umut...
How to get sender address in PST file without Outlook installe
Dmitry Streblechenko
0 / 12 20 Nov 2007
ReceivedTime and SentOn properties should give wnat you need. For the recipients, use tehe MailItem.Recipients collection. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "KAKA" <KAKA@discussions.microsoft.com> wrote in message news:ECF46F4E-B737-44E8-BF22-02D65F416630@microsoft.com... > Thanks. > But how can I get the mail...
mike lalonde
Mike Lalonde
0 / 1 18 Nov 2007
JOHN LALONDE SUDBURY ROBERT LALONDE MICHAEL LALONDE WILLIAM LALONDE DAVID LALONDE RICHARD LALONDE CHARLES LALONDE ANGIE LEGROW JOSEPH LALONDE THOMAS LALONDE CHRISTOPHER LALONDE DANIEL LALONDE PAUL LALONDE MARK LALONDE DONALD LALONDE GEORGE LALONDE DONNA ST ONGE ANGELA LEGROW KENNETH LALONDE STEVEN LALONDE BLAINE TESSIER EDWARD LALONDE BRIAN LALONDE RONALD LALONDE...
Hovering over from/to/cc name in reading pane
Michael Bauer [MVP - ...
0 / 2 16 Nov 2007
The Outlook object model exposes no methods for that. -- Best regards Michael Bauer - MVP Outlook Synchronize Color Categories & Ensure that Every Item Gets Categorized: <http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6> Am Thu, 15 Nov 2007 11:47:01 -0800 schrieb Nelson Forste: > Hi guys, > I'm using Outlook 2003. Currently, when you hover over...
calendar addin
Steve
0 / 2 15 Nov 2007
Jim what version of outlook are you working with? Steve "jim sturtz" wrote: > so im looking for it all. > > is there, forgetting price, a good web-based/interfaced outlook calendar > program. so various users can enter on their computers, then have it > synchronized to all calendars. > > then if more than 1 of the above, the least expensive? > > thanks. > > jim > > >...
MAPIFolder.Delete() vs. RDOFolder.Delete()
Dmitry Streblechenko
0 / 3 15 Nov 2007
1. You can delete it twice - second tiem in teh Deleted Items folder. 2. Cached provider sometimes complains that it is still busy synching to the server, so it cannot delete the folder before it is done. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Mike" <Mike@discussions.microsoft.com> wrote in message...
Identifying Outlook groups using the OOM
Chris
0 / 4 15 Nov 2007
Thanks Ken. Glad I wasn't missing something obvious! Chris Ken Slovak - [MVP - Outlook] wrote: > No way to do it that I can think of, sorry. > > -- > Ken Slovak > [MVP - Outlook] > http://www.slovaktech.com > Author: Professional Programming Outlook 2007 > Reminder Manager, Extended Reminders, Attachment Options > http://www.slovaktech.com/products.htm > > > "Chris"...
Replacing Folder View with Custom Control
DaveR
0 / 1 14 Nov 2007
I'm trying to replace a folder view with a custom user control. There is a CRM Example for outlook 2003 that does this by replacing the webview with a page that embeds user controls in it, however, this does not work for 2007. Does anyone know of a way to do this? When I try to use the example, the page that loads can't find the class any of the methods via the "windows.external"...
CommandBarComboBox on inspector toolbar (ol2003 + vsto 2005 se
Ken Slovak - [MVP - O...
0 / 6 14 Nov 2007
MS has access to internal type command bar controls that can't be used by us. So the behavior of built-in controls often can't be duplicated by outside developers. VSTO does not allow use of .NET controls in command bars. A 3rd party solution, Add-In Express, does allow using .NET controls on toolbars/menus, but then you have to use their framework and libraries to develop your...
Redemption, creating Exchange folders, and making them invisib
Dmitry Streblechenko
0 / 6 13 Nov 2007
Exchange is a problem, it does not allow to add new folders on the root level. PST is fine... Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Mike" <Mike@discussions.microsoft.com> wrote in message news:463E680F-2EA0-422D-A33D-F3788124628A@microsoft.com... > Yes, I'm familiar with the fact that Outlook Spy doesn't require code,...
ItemsEvents_ItemAddEventHandler does not always fire on incoming mails
Dmitry Streblechenko
0 / 5 13 Nov 2007
Restrict cannot be used with the Categories property. Below is the help topic for the Restrict method from Outlook VBA help file: Restrict Method See AlsoApplies ToExampleSpecifics Applies a filter to the Items collection, returning a new collection containing all of the items from the original that match the filter. This method is an alternative to using the Find method or FindNext...
Unable to send mail with attachments
Ravi
0 / 3 12 Nov 2007
Thank you Ken, I have already opened ticket with the vendor, just checking if anyone faced a similar issue. The issue could be related to outlook also because I am able to create and send email with attachement in outlook client and with MaX Compression Add-In enabled. Also if you look at the message received when it fails, its very generic and I saw many issues with same...
Customize Outlook current view with code(vba)
Ken Slovak - [MVP - O...
0 / 9 12 Nov 2007
Setting load behavior to startup should do the trick. If you are using an addin designer that will register the addin to use LoadBehavior = 3. Addins are registered in either HKCU or HKLM (the registry) at \Software\Microsoft\Office\Outlook\Addins. Under that key is something like MyAddin.Connect for your addin and LoadBehavior is one of the values required (others are...
Why my Outlook connector doesn't download new messages at all?
KeJiaLi
0 / 5 11 Nov 2007
Hello, Hmm, really strange... :) Anyway, it works fine now. :) Would you please add my MSN ID lkj5210@hotmail.com to your contact list for better communication? Thanks. -- KeJiaLi /Lee Windows Server email: lkj5210@hotmail.com "Edward" wrote: > I am glad that this problem isn't happening to you anymore. Connector just > started working again for me the next day as...
Live Search Maps Add-In for Microsoft Office Outlook
Roger M.
0 / 2 10 Nov 2007
I have had the same problem, it works for a bit then for some unknown reason it crashes outlook if I go to my calendar or try to add/view/edit an appointment. Hopefully someone has a fix for this because I agree it is a very useful feature. Roger M "Steve T" wrote: > I am running stand alone Outlook 2007. I am also running Office 2007 Home & > Student on Windows Vista Home...
Question for Ken Slovak - re: preview pane comment
DRuben
0 / 3 08 Nov 2007
Thank you. I wasn't sure if the PreviewHandler was what was required. I'll look into it again. Thanks! "Ken Slovak - [MVP - Outlook]" wrote: > You still can't do anything with code with the status bar. You can however > with Outlook 2007 have a custom previewer that would do much of what you > want. There's some information about writing previewers like that at > http://msdn....
E-Mail rules and Add-in
MON205
0 / 1 08 Nov 2007
Hello all, My add-in loops for all folders in outlook account, and reading all mails and set a named property for these read emails. The problem is, my add-in cause e-mail rules stop functionality sometimes!!!! What can cause this strange behavior? Any ideas appreciated. Thanks...
Strange Problem with Outlook 2003
prashant.tambe@gmail.com
0 / 4 05 Nov 2007
Dmitry, I tried dislaying the UI in the Outlook main thread and it seems to work, but now i am facing another issue. When the ItemSend returns its causing the Outlook to ShutDown, I am not seeing any exceptions in the debug output. Thanks, Prashant...
Redemption, "Select Folder(s)" pop-up, How-to?
Dmitry Streblechenko
0 / 2 05 Nov 2007
Redemption does not provider any custom dialogs, and that dialog is not part of MAPI. You can use Namespace.PickFolder method from OOM. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Mike" <Mike@discussions.microsoft.com> wrote in message news:4D01DECB-CCFA-4957-B0CA-B1781D25E4D4@microsoft.com... > Is it possible through...
Rename IMAP folder and Custom View Group by
Carter
0 / 6 05 Nov 2007
I am having a similar problem with the received date showing up as "None". We use an IMAP server and this problem is only showing up for one of our users as far as I know. This makes it difficult for him to keep up with his emails because he receives nearly 100 per day. He was using POP before and never had a problem. I don't know if it is an IMAP/Outlook problem or the fact that...
Installation of VSTO add-in fails
thomas.schager@gmail.com
0 / 1 05 Nov 2007
Hi, I'm sorry to ask again how to install an VSTO 2005 add-in in Office 2007, but I really do not see where the problem lies. I successfully installed: * Windows XP with Office 2007 * .NET Framework 2.0 * Outlook 2007 Primary Interop Assemblies * Visual Studio Tools for Office Runtime Also, the setup project seems to set the correct registry values; I use the default templates...
failed to grant permission and vb6 ActiveX control
sd
0 / 1 03 Nov 2007
hello all I've VSTO Addin for Outlook 2007.I've placed custom ActiveX control built in vb6 (say CTlRegion) on form region & added that ofs file to my project. I need to set the properties of CtlRegion when form region is shown as well as access these custom properties in VSTO addin.I've added refernce to this CtlRegion in VSTO addin & was able to access & set custom properties of...
How can i get the back ground color in the property sheet which i have added ...
Dmitry Streblechenko
0 / 4 02 Nov 2007
I am not using MFC, sorry. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool <koolkush.kushagra@gmail.com> wrote in message news:1193981223.818405.203120@z24g2000prh.googlegroups.com... > On Nov 2, 1:35 am, "Dmitry Streblechenko" <dmi...@dimastr.com> wrote: >> You need to paint the page backrgound using the theming API (it all...
Plug-in for Mapping Software (Territory)
Anthony Smith
0 / 1 01 Nov 2007
In Case someone else is looking to do the same thing, we found the software that appears to be able to do what we need: http://www.photoact.net/mapcontacts/MapContacts_Outlook.htm It's called map contacts. $49, and also a free trial. Plan on installing the free trial version to check it out. Have a blessed day! "Anthony Smith" <anthony@peconet.com> wrote in message...
Context Menu [only]
Michael Bauer [MVP - ...
0 / 2 01 Nov 2007
Before adding the item, check what already exists on the context menu. For a folder there're other items than for an e-mail. And if more than one e-mail is selected the menu looks different again. I never tested if that's reliable in every situation. You might check that yourself. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Synchronize Color Categories &...
All times are in (US) Eastern Daylight Time (GMT -4:00)