ThreadLast AuthorMessages
read/total
Date
programmatically add attachments to meeting requests
Steve*n
1 / 1 20 Nov
I have some code, referenced below which creates a MailMessage which is really a meeting request because when it shows up in my Outlook I can accept/decline like with any other meeting request. This is great. However, now I am trying to add attachments to the MailMessage using the code commented below, when I do this, it successfully adds the attachment however when the email is...
Outlook 2003 Word as Editor and .NET forms
Ken Slovak - [MVP - O...
12 / 12 20 Nov
Outlook can certainly overwrite changes made in code if the changes aren't saved, and especially if you use a different API such as Redemption and don't save, but otherwise no overwriting should happen. There is no way to refresh what's shown unless you switch to a different folder and back again, which will produce an annoying flash. -- Ken Slovak [MVP - Outlook] http://www....
place button on ribbon for compose & read message
Ken Slovak - [MVP - O...
4 / 4 20 Nov
No idea offhand. The XML looks valid for read emails and uses correct syntax. Do you have the UI setting made to show any errors in your ribbon? Check Tools, Options, Other tab, Advanced Options button, check the "Show add-in user interface errors". Also make sure you are getting the callback for that ribbon XML when you initially open a mail item for reading. -- Ken Slovak...
BCC field in an Outlook Meeting Request
Ken Slovak - [MVP - O...
2 / 2 20 Nov
For a meeting request the To field is required attendees, Cc is optional attendees and Bcc is for resources for the meeting. -- 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 "Jaspie1577" <Jaspie1577@discussions.microsoft.com>...
get attachment file data
Ken Slovak - [MVP - O...
1 / 1 20 Nov
The actual binary data for the attachment is stored in PR_ATTACH_DATA_BIN. That property is a PT_BINARY. However, that may be encoded in some way so the usual method is to save out the attachment to the file system and work with it from there. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended...
How can I access the Outlook2007RibbonXAddin?
Robin
7 / 7 19 Nov
no I didn't get any screen link that.. I think that the installation just trust you on having a My Documents. But since I have to install it as a Admin and run it as a user I cant find the \\SERVER\userfolders\robin-admin folder. So the case is closed now.. =) "Ken Slovak - [MVP - Outlook]" wrote: > Do you get a choice of where to install that addin when the MSI runs? > > --...
Items in consecutive Selection collections not the same?
Dmitry Streblechenko
4 / 4 18 Nov
Compare based on the value of the EntryID property -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "SeekerOfTruths" <SeekerOfTruths@discussions.microsoft.com> wrote in message news:EBC9B8E9-50D9-491B-A060-D5F3D9246FEE@microsoft.com... > Sorry I forgot to mention the Outlook version. It's 2007 SP1. > > Thanks for the...
COM Add in or ECE?
Dmitry Streblechenko
4 / 4 18 Nov
Let me reiterate what Cain said: 1. ECE will (very likely) not be supported in the next version of Outlook 2. There isn't much support available for ECE 3. You must use C++ or Delphi to write an ECE - ECE is as pure Extended MAPI as it gets 4. ECE is an old API unchnaged from the days of the 16 bit Exchange Client (the Outlook predecessor). 5. Outlook 2007 lets you do everything ECE...
jpg file in signature
Robin
2 / 2 18 Nov
As far as I know its the same. Kind Regards, Robin "sophie" wrote: > hi, > > The jpg or gif files in the signature are also the attachments in the > mail. What kind of attachment are these jpg files? are they same as other > attachment jpg files? > > Anyone knows?...
Hello World Crashes.. I really need help with this... =S
Robin
4 / 4 18 Nov
Thank you a lot for your help. You gave me some terms I never heard of and I will do some research for them. If my problems persist Ill ask again. But thanks for all your great help. Thanks again, Robin "Ken Slovak - [MVP - Outlook]" wrote: > If you are referencing the Office PIA you should have CommandBars.Add(), > it's part of the object model. > > Other applications have...
Sending different body text to each recipient
Ken Slovak - [MVP - O...
2 / 2 17 Nov
No. Think about it. If you send one email to multiple recipients they each receive the same item so the body would be the same. If you split the email into one per recipient then you can have custom bodies in each but you break the threading. Your choice. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager,...
_Commandbar button event handler for multiple buttons
Exchnerd
11 / 11 15 Nov
...
VSTO Add-In Loading Twice
Dave Vespa [MSFT]
3 / 3 15 Nov
Are you using Form Regions? I have seen this issue reported by two other both using Form Regions. Dave "Ken Slovak - [MVP - Outlook]" wrote: > Check in the registry under HKCU\Software\Microsoft\Office\Outlook\Addins > and make sure it's not registered twice, possibly under different clsid's or > names. > > -- > Ken Slovak > [MVP - Outlook] > http://www.slovaktech.com >...
Outlook 2007 spell check and .NET code
Ken Slovak - [MVP - O...
4 / 4 14 Nov
Is the Word CheckSpelling method a blocking synchronous method? I thought it was asynchronous. -- 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 "rob_tt08" <robtt08@discussions.microsoft.com> wrote in message...
Trapping "Enter" key in _CommandBarComboBoxEvents
Ken Slovak - [MVP - O...
13 / 13 14 Nov
Many of the controls used for CommandBar controls behave differently when used internally by MS than they do for you and many aren't available to you. There's nothing you or I can do to change that. What you see is what you get with that control, and if you aren't happy with how it works for you, use something else. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author:...
capture attachment count change
Ken Slovak - [MVP - O...
2 / 2 13 Nov
Use the MailItem.AttachmentAdd() event for that. -- 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 "sophie" <sophie@discussions.microsoft.com> wrote in message news:6E0092BA-3099-47EB-97B4-B2EA991F87ED@microsoft.com... > hi, >...
Outlook 2007 AddIn being disabled
Ken Slovak - [MVP - O...
6 / 6 13 Nov
The headless mode fix is in the latest version of the VSTO runtime, If you aren't using and deploying that version the addin would terminate when started in headless mode before you even get a crack at the code in startup. With the latest version of the runtime you'd need to test for UI (Explorers and/or Inspectors) to decide if you want to instantiate various parts of your addin. I...
Outlook 2007 Calendar Printing Assistant Print Error
bschneider
1 / 1 12 Nov
I have installed the Calendar Printing Assistant on our 2003 Terminal Server running Outlook 2007. When I try to print a calendar, I get a print error, "Windows cannot print due to a printer error...". I have tried it with multiple printers and all the printers work fine for everything else. I am wondering if it is a Terminal Services issue, because I installed it on my local...
Enable Disabled Add-Ins automatially
dsg800
3 / 3 12 Nov
Great thanks for the help will give this a test. "Ken Slovak - [MVP - Outlook]" wrote: > There's a Resiliency key in the registry that is where the disabled items > are stored and listed. However it's not an easy task to discover which > disabled item is which there so deleting that key before Outlook starts > would be the usual workaround. > > The key is discussed in...
application item send
Ken Slovak - [MVP - O...
5 / 5 11 Nov
So it should be, thanks for the correction. I just copied your original event signature and didn't bother to actually study it closely. -- 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 "sophie" <sophie@discussions.microsoft.com>...
Outlook Connector - Sync Issues
captaint
1 / 1 10 Nov
I have recently installed the latest Outlook Connector Beta (12.0.4518.1063) to my Vista powered laptop to use with Outlook 2007. When using the program no errors are displayed and i'm receiving and sending emails fine. The problem arises when I log into Windows Live (hotmail) directly via internet explorer. Any changes i've made through Outlook don't seem to be reflected at all....
Outlook has already begun transmitting this message
Dorian
1 / 1 10 Nov
One of my users has been getting this message. System.Runtime.InteropServices.COMException (0xBBC40114): Outlook has already begun transmitting this message. at Microsoft.Office.Interop.Outlook._MailItem.get_EntryID() at PeiceOutlookSupportTracker.ThisAddIn.Explorer_SelectionChange() Code: private void Explorer_SelectionChange() { try...
Typing control in new Email letter
Ken Slovak - [MVP - O...
2 / 2 10 Nov
There are no events for that as far as I know in either the Outlook or Word object models. -- 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 "BIG_G" <BIGG@discussions.microsoft.com> wrote in message...
How to determine if a sent item comes from a shared inbox folder
Ken Slovak - [MVP - O...
4 / 4 10 Nov
There are no explicit properties to tell you if a mailbox is shared or your own mailbox unless you are using Outlook 2007. In that case you can use the Store.ExchangeStoreType and your primary mailbox would be OlExchangeStoreType.olPrimaryExchangeMailbox. Shared mailboxes would be OlExchangeStoreType.olExchangeMailbox. You iterate the Stores collection and check the type of each....
Custom Add-In for Outlook Mail
Ken Slovak - [MVP - O...
10 / 10 10 Nov
Where are you instantiating your m_objApp object? You are assigning an event handler to that object before it's ever instantiated, assigned to an object that's Nothing. In your startup event handler assign the Me.Application value to your Outlook.Application object: m_objApp = Me.Application Do that before you assign the event handler. -- Ken Slovak [MVP - Outlook]...
User Control in FHP Doesn't Initialize
Nenad
1 / 1 10 Nov
I am programming Outlook 2003 using Visual Studio 2008. Add-in uses embedded user control in folder's home page, exactly as it was recommended. Here is HTML code that is using: <html><head><style type="text/css">body{overflow: hidden}</style></head> <body rightmargin = '0' leftmargin ='0' topmargin ='0' bottommargin = '0' onload='OnBodyLoad()'> <script> function OnBodyLoad() {...
Outllok Attachments ( 2007 )
sophie
3 / 3 10 Nov
i have worked on attachment before. I also get the collection of the attachment, but i can not get the original location, only get the list of attachments. "Brane" wrote: > Spent hours and hours locating a solution to the problem. No luck. > The Problem : > You select a mail item and then select one or more of its attachments ( all > in the main explorer window ) . Then you click...
MailItem User Properties not updating
rob_tt08
1 / 1 10 Nov
Our company has been working on an Outlook AddIn using VSTO which has a number of issues which we have not been able to resolve yet. In our .NET addin we have created a couple of custom fields specific to our application on the Inbox folder. These link to user properties we create on the mail items. In code when we set the values for these user properties, we are calling mailItem....
Politics
Amy
1 / 1 09 Nov
eol coming compellingly react encode tia lettrs emergency studies...
Re:
Michael Tissington
6 / 6 08 Nov
Thanks - that's exactly it .... it's clear if you know the technology :) However it turns out that Outlook 2007 has removed this capability outside of it's own folder web pages. ---------------------------------- He's asking about the outlook URI scheme, e.g. outlook::today, which does work when typed into a browser (even Firefox) because Outlook has registered itself as the...
Remove Mail Item Event Doesn't Fire
Dmitry Streblechenko
4 / 4 08 Nov
Not in OOM - on the MAPI level (that is where the problem is), TABLE_CHANGED event is fired rather than TABLE_ROW_DELETED. This was fixed in Outlook 2007 as far as I know. Outlook Object Model does not track TABLE_CHANGED event, <plug> Redemption (through the RDOItems.CollectionModified event) does - http://www.dimastr.com/redemption/rdo/RDOItems.htm#events </plug> -- Dmitry...
Adding an icon to outlook commandbar button
Ken Slovak - [MVP - O...
2 / 2 06 Nov
See if the couple of C++ addin samples at www.outlookcode.com work with buttons at all. Most of the code samples out there are VB6, VB.NET or C#, not C++. -- 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 "Exchnerd"...
Lookup add-in
Nenad
2 / 2 06 Nov
Go to Tools/Options menu item, then choose tab Other, click on the button Advanced Options... At the bottom of the window opened, you can find two buttons: Add-In Manager and COM Add-Ins. When you click on either of these buttons, a dialog will open with a list of installed add-ins, and you can see if your add-in is listed there and if it was deactivated. "DB1895" wrote: > I once...
How to check SendReceive status?
regify@googlemail.com
3 / 3 06 Nov
Thank you, Ken. Volker...
navigating to form region using keyboard
Ken Slovak - [MVP - O...
2 / 2 05 Nov
About the only way would be to subclass a Windows message handler to the Outlook windows and handle the key strokes directed to those windows looking for your accelerator key using Win32 API functions. Then you can call the Select() method of the form region. That's about it. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007....
Folder Pick List
Michael Tissington
3 / 3 04 Nov
Thanks but I need to select multiple folders....
show attachment file path as link in message body
Ken Slovak - [MVP - O...
4 / 4 04 Nov
You can of course get the HTMLBody of an item and do string parsing looking for a src: reference that refers to that attachment and then put whatever text you want in the HTMLBody. The same could be done using Body for plain text items. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders,...
Outlook 2003 Add-in Creation
Ken Slovak - [MVP - O...
2 / 2 04 Nov
I'm not familiar with LAMP, but if it can create a COM addin and use Outlook automation then you can do what you want. You can look at the information on Outlook COM addins at www.outlookcode.com, but you won't find any :LAMP examples there. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders,...
Insert PNG picture programatically on outgoing email (OL2007)
Ken Slovak - [MVP - O...
5 / 5 04 Nov
Any attachment can only be added or embedded from a file. I usually save to a temp folder and then add that file, then I delete the temp file. -- 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" <none123@none.com> wrote in...
How to prevent winmail.dat from being sent with message?
Ken Slovak - [MVP - O...
4 / 4 03 Nov
TNEF is the Rich Text envelope used for transmitting RTF text and that produces the winmail.dat file. Only Outlook knows how to use winmail.dat, other software such as Outlook Express will just show the attachment. You should never send out RTF text unless you know the recipient is using Outlook or you end up with the winmail.dat attachment that can't be interpreted. -- Ken...
Customizing outlook search
Ken Slovak - [MVP - O...
2 / 2 01 Nov
The search dialog? No, you'd have to create your own dialog. -- 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 "Exchnerd" <sanjuraja@gmail.com> wrote in message news:5e13980a-8543-4cda-b603-7e483bf27803@o4g2000pra.googlegroups.com....
Confused by Outlook restrictions on Appointments
Michael Tissington
3 / 3 30 Oct
I didn't I just went into Outlook and did it via the UI ... but it seems to be working now... amybe finger trouble....
outlook shared addin, Load Behavior kept saying "unload"
Ken Slovak - [MVP - O...
2 / 2 30 Oct
Are all dependencies deployed to the test machine? In general if an addin gets disabled when it tries to load either some dependency is missing, the PIA's aren't installed or you have an unhandled exception that's causing your addin to become disabled. Take a look at the troubleshooting steps for managed addins at http://blogs.msdn....
Image viewer problem
Jim S
1 / 1 30 Oct
I have a registered version of Outlook Image Viewer from OPE2000. It has worked well enough until now, but either the installation of Spambayes or a bit of file cleaning has left it so that it does not function from the toolbar icon altho' it works well enough from the desktop shortcut. I have tried uninstalling/reinstalling both OImage Viewer and Spambayes, but the result is the same. I...
IMAP and Outlook.MAPIFolderEvents_12_BeforeItemMoveEventHandler
Koen Verwimp
2 / 2 30 Oct
Hi, I have noticed the event only triggered when the IMAP account is the default account. I don't know why? Thanks, Koen "Koen Verwimp" wrote: > Hello, > > I have problems with a > Outlook.MAPIFolderEvents_12_BeforeItemMoveEventHandler since I am using a > IMAP account. > > The handler isn't trigged in a IMAP store. > > Anyone any idea why? or had same problems? >...
Undelete MailItem in IMAP Store programmatically
Koen Verwimp
1 / 1 29 Oct
Hello, Is there a way to 'undelete' a mailitem programmatically in a IMAP store? greetz, Koen...
Redemption Pickfolder at offline throws an error
Bert_Bert
3 / 3 29 Oct
historically I set MAPIOBJECT as recommended at homepage of Redemption. Then my problems with OST Pickfolder started. So I remember I have read this method was not 100% reliable because of ?marshalling? or I do not remeber exactly and COM is a big mystery for me so I changed it to use .Logon method withou any parameters, since I am already logged in as the DLL starts when Outlook...
Add folder to favorite folders
Koen Verwimp
5 / 5 29 Oct
Thanx Ken! "Ken Slovak - [MVP - Outlook]" wrote: > Sorry, I misunderstood. That method adds the folder to the IE Favorites. The > object model doesn't expose any way to add a folder to the Favorites pane. > > -- > Ken Slovak > [MVP - Outlook] > http://www.slovaktech.com > Author: Professional Programming Outlook 2007. > Reminder Manager, Extended Reminders, Attachment Options....
Multiple Instances of Add-In Loading
Ken Slovak - [MVP - O...
4 / 4 29 Oct
You can always compare the Window argument and once you have the correct window just make sure it isn't your CTP that's there. Ignore any others that don't have your tags. -- 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...
Modify Outlook Ribbon
Ken Slovak - [MVP - O...
2 / 2 29 Oct
I don't know that I've seen any specific examples for contact items, but you can apply any of the examples for various types of items in the sample addins for Outlook 2007 at the Office developer Web site or www.outlookcode.com or my site at http://www.slovaktech.com/outlook_2007_templates.htm. You also should download the docs on the ribbon from the Office developer site and look...
All times are in (US) Eastern Daylight Time (GMT -4:00)