ThreadLast AuthorMessages
read/total
Date
Detecting when Appointment Occurs
Dmitry Streblechenko
0 / 2 20 Oct 2007
There is no such event. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "mwernerps2 via OfficeKB.com" <u10791@uwe> wrote in message news:79fb69b00cc69@uwe... > Is there an event in Outlook that is triggered exactly when an appointment > occurs or is the only event available a reminder event? I would like to > detect appoinments...
ADD-in developmenet advise
Dmitry Streblechenko
0 / 4 20 Oct 2007
No, an add-in developed in the Outlook 2003 environment will work in Outlook 2007. But the opposite is not true. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "John" <John@nospam.infovis.co.uk> wrote in message news:OyZ2j80EIHA.4296@TK2MSFTNGP04.phx.gbl... > Thanks. Is it true that vsto add in written for outlook 2003 will...
Outlook Calendar AutoAccept and Redemption
Dmitry Streblechenko
0 / 2 19 Oct 2007
CalendarOptions property currently only works for the online Exchange stores (such as returned by RDOSession.GetSharedMailbox). Send an e-mail to my private address if you want an updated version. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Rick H" <rickh_1960@hotmail.com> wrote in message news:1192816104.114629....
Access object in explorer from type olExplorer
Helmut Obertanner
0 / 3 19 Oct 2007
Hello Christian, is the Component a Serverside component ? Normally on the client you would only get HTML, except when you have registered the component locally and have embedded the component as <object....> in the html page. Greets, Helmut "Christian Havel" <ChristianHavel@discussions.microsoft.com> schrieb im Newsbeitrag news:9A15A010-FC70-4CC7-BEA2-C29CEDFDB4F8@microsoft....
Redemption and Outlook 2007 addressbook with IE7 and Vista
Dmitry Streblechenko
0 / 2 18 Oct 2007
The problem is that MAPI cannot run in the IE7 protected mode in Vista - its has problem creating some memory mapped files used internally. I am trying to at least make them admit that this really *is* a problem. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "GR" <grourke@sonexis.com> wrote in message news:1192743197.151340....
CompareEntryIDs is returning bogus results
Count Infinity
0 / 2 18 Oct 2007
Actually no. The entry id in every case is for a message that I already opened at one point, read, and used information from to populate a list. The software operates across several stores, so the stores are all kept open. Therefore, in the current session, the store is open, and has been used to open this particular message at least once. Further testing reveals that the following...
ASP.Net custom form question for the experts
Ken Slovak - [MVP - O...
0 / 2 18 Oct 2007
Server side won't cut it for Outlook code since Outlook is on the client and you'd need to run your code client-side too. Usually for something like that the addin connects to a Web service using SOAP. Otherwise your server would have to download code to the client to run there. Also, folder home pages do have restrictions for security reasons as to what they can do. Some things like...
update xheader
shubhangi
0 / 1 18 Oct 2007
Hi! I've custom xheader (say x-Matter) added to outgoing message.On receiving end I extract the xheader ,display on control(cmbMatter) placed on form region of read message.User can modify the value of that control.When the user presses save bttn on tha same form region ,I need to update the same Xheader(x-Matter) with updated value of the control(cmbMatter) entered by user.So I need to...
how to create outlook PRF file
Oliver Vukovics
0 / 2 17 Oct 2007
Hi KAK, have a look on this sites: "Customizing Outlook Profiles by Using PRF Files" http://office.microsoft.com/en-us/ork2003/HA011402581033.aspx Tips for using Outlook 2002/2003 .prf files to configure profiles http://www.slipstick.com/outlook/prftips.htm Create an Outlook Profile File (*.PRF) http://www.outlook-tips.net/howto/prf.htm Maybe it helps. -- Oliver Vukovics...
How to create mail item in OL 2007 using MAPI
Dmitry Streblechenko
0 / 4 17 Oct 2007
You cannot set the PR_CREATION_TIME property. Why do you set the PR_DEFAULT_PROFILE property? Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Ivan" <Ivan@discussions.microsoft.com> wrote in message news:FD779EF6-1747-414C-8C2E-F927318C0E01@microsoft.com... >I set these message properties: > PR_SUBJECT; > PR_BODY; >...
Get context of context menu
Michael Bauer [MVP - ...
0 / 2 17 Oct 2007
I don't know how reliable that is, but the only way would be to check the context menu itself: For instance, the context menu for a folder has other menu items than the one for one item, which differs again from the one for two selected items etc. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: <http://www.vboffice.net/product....
Redemption, SMTP address
Mike
0 / 3 16 Oct 2007
SmtpAddress isn't in the object model for the Redemption dll I'm using. Was that property recently added? Or am I just way out of date? "Dmitry Streblechenko" wrote: > Use SafeRecipient.AddressEntry.SmtpAddress > > Dmitry Streblechenko (MVP) > http://www.dimastr.com/ > OutlookSpy - Outlook, CDO > and MAPI Developer Tool > > "Mike" <Mike@discussions.microsoft.com> wrote in...
Issues with getting the Sender Name in email
Dmitry Streblechenko
0 / 5 15 Oct 2007
If you are using Outlook 2007, you can read the MailItem.SendUsingAccount property. In the previous versions, you can read the named properties that storee the name and the id of the account selected in the inspector (look at a message sent using non-default account with OutlookSpy - click IMessage). If thee properties are not set, assume the default account. Dmitry Streblechenko...
Alternate data source for folders/explorers (synthesizing mailitems)
Ken Slovak - [MVP - O...
0 / 4 15 Oct 2007
You can't code for the preview pane and you can't code or change the InfoBar where the status is displayed. Explorers are for folder views, Inspectors are for open items. If you have an item you can use item.GetInspector to get a handle to the Inspector for the item. For an Explorer you can iterate the Explorers collection and check for Explorer.CurrentFolder to see what it's...
How to get an email during the send process?
Helmut Obertanner
0 / 2 15 Oct 2007
Hello Sublimese, you can monitor the sentItems folder for the Items.Add event. everytimes an email is sent it goes to the sent items folder of the sender. But as I know you can archive that functionality also with a rule at the Client. If it's for 1 Client only - maybe better use a rule, if it's for multiple clients - better use an addin. Here I would recommend an COM addin, not...
Can get UserProperty Names but not Values?
Michael Tissington
0 / 4 14 Oct 2007
_bstr_t b = UserProp->getValue().bstrVal...
Best method for saving a list of contacts?
Ken Slovak - [MVP - O...
0 / 2 13 Oct 2007
DL's are not very robust. I'd use EntryID and StoreID but bear in mind that depending on the store provider the EntryID may change if an item is moved or deleted within the same store. If it's moved to a different store the EntryID and StoreID will always change. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager,...
Looping through and/or creating Exchange folders via Redemptio
Dmitry Streblechenko
0 / 8 12 Oct 2007
What is the COM exception number and message? Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Mike" <Mike@discussions.microsoft.com> wrote in message news:F7B12673-0A12-41F8-AB7A-93F1B308FAC3@microsoft.com... > You know, it's actually quite strange. An exception is thrown when using > the > enum value, but the folder is...
OpenEntry Requests.
Dmitry Streblechenko
0 / 4 12 Oct 2007
Do you return all of the properties requested through IMAPITable? Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "T-rev" <trevorgetty@aol.com> wrote in message news:e$Yx7EODIHA.5136@TK2MSFTNGP03.phx.gbl... > As the email is stored in MSG format in a backend store, when Outlook > requests the properties we have to retrive the...
Regarding outlook UserProperty
Ken Slovak - [MVP - O...
0 / 2 12 Oct 2007
Outlook user properties don't travel well over the Internet. At minimum you'd have to send the item as Rich Text and hope that the format wasn't changed when the items go out (a lot of local and server settings affect that) and that the recipient was using Outlook and that the servers along the way didn't strip out the TNEF wrapper that appears as winmail.dat when things go wrong or...
Exchange Extention - No load and no error
JahMic
0 / 2 12 Oct 2007
Uhm, well, there is also the Help->Disabled Items - Enable option. How did I miss the first time around... J On Oct 12, 4:44 pm, JahMic <jah...@gmail.com> wrote: > Hi All, > > One of my clients has a situation where my add-in is not loading and > no errors are reported. In the trust center, the add-in is checked as > active. In the very beginning of loading (Install interface),...
Changing Button Color when pressed
PS
0 / 3 12 Oct 2007
Ken This is for Outlook 2003...
Showing Error: HTTP/1.1 403 (Forbidden)
Atul Saxena
0 / 3 11 Oct 2007
ok thanks "Ken Slovak - [MVP - Outlook]" wrote: > Is this WebDAV code accessing the server? You might be far better off > posting a message like this in an Exchange development group, since this one > deals with programming with the Outlook object model. > > -- > Ken Slovak > [MVP - Outlook] > http://www.slovaktech.com > Author: Professional Programming Outlook 2007 >...
Outlook Automation Contact Photo Access
Ken Slovak - [MVP - O...
0 / 8 11 Oct 2007
I have no idea what you mean by "cannot COM to it". You could see if an application manifest solves the permissions problem but I tend to doubt it. I think with UAC that if you are taking actions that require admin permissions that you would have to live with elevation. I don't see why saving a picture attachment and loading it as a stream would require elevation though. Are you...
Outlook 2003 or 2007 ? which one?
Ken Slovak - [MVP - O...
0 / 5 11 Oct 2007
For programming Outlook 2007? Well, I'd be remiss if I didn't recommend my own book :) In addition to that there's a more beginner level book by Sue Mosher, it's referenced on her www.outlookcode.com Web site, and a book by Randy Byrne and Ryan Gregg of the Outlook team called Building Applications with Outlook 2007 from MS Press. -- Ken Slovak [MVP - Outlook] http://www....
Ribbon Addin in OutLook 2007
JeanMoul
0 / 2 11 Oct 2007
Thanks you for your answer I will have a look at it !...
how to extract PST file to html or RTF file
Michael Bauer [MVP - ...
0 / 3 11 Oct 2007
Here's a sample for how to loop through every folder: http://www.vboffice.net/sample.html?mnu=2&lang=en&smp=12&cmd=showitem?pub=6 Additionally, for each item you need to loop through its Attachments collection. -- Viele Gruesse / Best regards Michael Bauer - MVP Outlook Organize eMails: <http://www.vboffice.net/product.html?id=2006063&cmd=detail&lang=en&pub=6> Am Wed, 10...
Text messaging in Outlook 2007
Jean
0 / 1 10 Oct 2007
I installed the new SMS Link for Microsoft Office Outlook 2007 for text messaging. I'm using Vista with Office 2007. When I click on "TO" in the new text message to access my address book, it crashes Outlook every single time. The error states that Outlook has stopped responding and restarts Outlook. I haven't had one successful attempt. Any suggestions?...
OpenSharedItem - Exception
Andre Maas
0 / 3 10 Oct 2007
Hello, i would like to load a Mail from filesystem. In OL2007 is a new function called: 'OpenSharedItem'. I've called the function like: MailItem mailItemLoaded = Application.Session.OpenSharedItem(@"D:\456.msg") as MailItem; If the mail is an OL2007 or OL2003 Mail the function works fine. If the mail i would like to load is from OL2000 the function throw the following...
How to suppress security warning? (Outlook 2002 ATL VC++ addin)
Ken Slovak - [MVP - O...
0 / 2 10 Oct 2007
See http://www.outlookcode.com/article.aspx?id=52 -- 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 "furrbie" <furrbie@discussions.microsoft.com> wrote in message news:8522B03F-4F14-4534-8869-51BAD889DF18@microsoft.com... > Hi, >...
Error:Name cannot begin with the '0' character, hexadecimal value
Atul Saxena
0 / 1 10 Oct 2007
Dear All, I am working exchange server & fetching task of outlook 2007 through MSXML2.XMLHTTP30 now I am facing the following error "Name cannot begin with the '0' character, hexadecimal value 0x30. Line 1, position 564" while reading XML. Please help me to solve this problem. I am also mentioning the code below: Private Function ReadTask(ByVal stURI As System.String) Dim...
Disable Addin runtime
j
0 / 4 09 Oct 2007
On Oct 7, 9:11 am, "Giuseppe" <nonsap...@developer.it> wrote: > Hi, > I need to disable my addin if the a server is not available. > in which event I have to do it ? > > Thank you. > Giuseppe You can unload the AddIn at all (you will need restart the Outlook in order to laod the AddIn again). 1. Clean all resoures, delete GUI objects like menu, buttons ......... 2. AppDomain....
Adding icon to custom view
Tom at GSD
0 / 4 08 Oct 2007
Okay - if we find anything we will. "Ken Slovak - [MVP - Outlook]" wrote: > I've never seen any useful information on the SuperGrid and when I've > examined it in Spy++ I've never seen any sub-windows related to the > SuperGrid. > > If you do find something please post it. > > -- > Ken Slovak > [MVP - Outlook] > http://www.slovaktech.com > Author: Professional...
CommandBarPopup event?
Ken Slovak - [MVP - O...
0 / 2 08 Oct 2007
There are no events like that for a popup. If you want to create a dynamic menu structure for your popup menu you have to use a wrapper class for each button you want there and a collection of buttons that get shown in the popup. That has to be done when you create or re-create your popup control and its collection of buttons. -- Ken Slovak [MVP - Outlook] http://www.slovaktech....
Turkish languages settings in outlook 2003
goodieman
0 / 1 08 Oct 2007
Hi There I'm trying to help a user add Turkish languages settings in outlook 2003. When the user receives an email in Turkish, some of the characters are not appearing correctly. I have changed the language settings the usual way and also added in the office proofing tools Can someone assist or advice Thanks...
Modifying Attachment contents using VC++ ATL
furrbie
0 / 7 06 Oct 2007
Please ignore my previous post. It seems I wrote the Add method wrongly (I should have passed in a display name as one of the arguments). "furrbie" wrote: > How do I release the item? > > Thanks, > Mark >...
vb6 DoEvents locks up Outlook 2007 when new mailitem is opened
Dmitry Streblechenko
0 / 4 05 Oct 2007
No, whether you call DoEvents in VB6 or System.Windows.Forms.DoEvents in .Net won't make a difference; they all do the same thing. A separate thread is the way to go. Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool "Chris Smith" <ChrisSmith@discussions.microsoft.com> wrote in message...
winmail.dat
Ken Slovak - [MVP - O...
0 / 2 05 Oct 2007
What solution are you talking about? You have to provide details of what you want, what version of Outlook you're using and what you're trying to accomplish if you want answers. -- 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...
winmail.dat
Vikrant Agarwal
0 / 1 05 Oct 2007
I need vb6 code for the same solution which uses MS outlook and Redemption objects. help is appreciated. A Womand Told Me http://www.awomantoldme.com...
Outlook Add-in
Ken Slovak - [MVP - O...
0 / 5 04 Oct 2007
Unless you change the State of the button it shouldn't look "pressed" when you call Execute. -- 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 "Marius" <Marius@discussions.microsoft..com> wrote in message news:elHn5IsBIHA....
Follow-up for Dmitry: Redemption and Reg-Free COM, how-to?
Dmitry Streblechenko
0 / 2 04 Oct 2007
Sorry, forgot to mark the original thread :-) The customization could be the problem for VS: customization only modifies the names and GUIDs of the Redemption objects in the registry, but the type library embedded in the dll stays intact. VS probably looks for the original registry keys in the registry (which are missing). Since you are using registry-free COM, I don't think there is...
Migrating AddIn from VB6 to VB2005
Thanasis Soltadis
0 / 3 04 Oct 2007
Thank you very much for your attention. "Ken Slovak - [MVP - Outlook]" <kenslovak@mvps.org> wrote in message news:eMk6OuoBIHA.4712@TK2MSFTNGP04.phx.gbl... > Migration usually leaves you with as much to convert manually as was > actually converted. For forms I'd just copy them as closely as possible, I > don't know of any ways to convert a VB6 form into a Windows form > automatically....
Extract and replace the email's body (VSTO, Outlook 2007)
Ken Slovak - [MVP - O...
0 / 2 03 Oct 2007
If you want the text you can use item.Body. Using item.HTMLBody will return the actual HTML code if the message is in HTML format. Rich text can be gotten from Body or if you want the RTF coding you can get it from HTMLBody, where it's wrapped in HTML tags. To get the actual pure RTF you would need to use the PropertyAccessor to access property PR_RTF_COMPRESSED (0x10090102), although...
Adding a ComboBox to MS Outlook 2003
Ken Slovak - [MVP - O...
0 / 2 03 Oct 2007
Add a combobox where? In a toolbar or menu? Use the CommandBarComboBox control to do that. Look for code samples for that at www.outlookcode.com or google for that control to see sample code. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007 Reminder Manager, Extended Reminders, Attachment Options http://www.slovaktech....
Named properties in PS_INTERNET_HEADERS don't go back to named properties whe...
Ken Slovak - [MVP - O...
0 / 5 03 Oct 2007
Why would you expect that an outgoing x-header would be preserved and maintained by the receiving system on a reply? The recipient would need to be running Outlook also or some other mail software that can be set to provide the x-header and so return a reply with that header. You can't control what happens on the other end. Case sensitivity in x-headers is not important according to...
OL2000 'Illegal instruction' after adding menu to ActiveMenuba
Georg-Hendrik
0 / 2 01 Oct 2007
Thanks for the quick response. The problem occurs even without subscribing to events. The original code subscribed to Click events. Above attached code does not. In both cases, the illegal instruction occurs at close of Outlook. If it helps in narrowing the problem, calling soMyMenuItem->Delete() immediatly after setting Caption and Tag, produces an access violation. "Dmitry...
Add button to Outlook 2003 advanced find menu bar??
Paul D.
0 / 1 01 Oct 2007
Thanks for the response Ken. One last question... Since with a macro you can customize and drag and drop an icon on the Advanced Find menu bar, is there a way to manually get my added commandbar to drag and drop like a macro? At the moment, when I click customize on I don't see my toolbar item as something listed... is this because it was dynamically created? "Ken Slovak -...
Direction/Help required for not to save MailItems in Sent Folder
Ken Slovak - [MVP - O...
0 / 9 01 Oct 2007
See if Marshal.ReleaseComObject works any better. If not think about not calling that function at all. -- 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 "PS" <pratikrshah@gmail.com> wrote in message news:1191242889.794815....
Outlook add-in installed but will not load
Ken Slovak - [MVP - O...
0 / 7 01 Oct 2007
I would say that you would need to do the same for the satellite assembly and create a set of custom actions for that also. -- 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 "Mike" <Mike@discussions.microsoft.com> wrote in message...
Outlook 2007 vs WinForm client
David Eliasen
0 / 1 01 Oct 2007
Hi everyone, We have been asked to update a communication solution for a company with high level of incoming mails and faxes (approximately 1000 per day). Faxes arrive as a tiff-file attached to an email. The communication solution should allow the users to use special features such as: * Edit attached images and resend these * Collaborate on a single message (e.g. I can see who...
All times are in (US) Eastern Daylight Time (GMT -4:00)