ThreadLast AuthorMessages
read/total
Date
Need to suppress Outlook message on msg.Send()
Ken Slovak - [MVP - O...
0 / 2 03 Jul
See http://www.outlookcode.com/article.aspx?id=52 for your various options. -- 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 "Adi" <adityajain_bit@indiatimes.com> wrote in message...
Custom Explorer
Sue Mosher [MVP-Outlook]
1 / 5 01 Jul
As Dmitry said, you can pretty much put whatever you want into an FHP. See http://www.outlookcode.com/news.aspx?id=45 for links to samples using .NET techniques. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming: Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Koen Verwimp" wrote: > Hey Sue,...
Adding Custom older List Items
Sue Mosher [MVP-Outlook]
3 / 3 01 Jul
Is there something you want this store to do that you can't do with a .pst file? -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming: Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Jody Morgan" wrote: > I am trying to add my own Folder List to the Outlook Folder list. I want it > to reside...
How do I prevent a regular user from being able to disable my Outlook Addin
Andrei Smolin [Add-in...
2 / 2 30 Jun
Hello David, You need to register the add-in in HKLM, not HKCU. Regards from Belarus (GMT+2), Andrei Smolin Add-in Express Team Leader www.add-in-express.com "David Wilson" <dave@dmwilson.net> wrote in message news:u0QQKgU2IHA.5728@TK2MSFTNGP06.phx.gbl... >I recently wrote an outlook 2007 addin to enforce email restrictions and >now I want to make sure that a regular user...
SPAM
Milly Staples [MVP - ...
0 / 2 29 Jun
...
AVG Users Outlook stops showing HTML emails
Lance
1 / 1 28 Jun
Attention AVG users. If you upgrade to AVG Free 8 you may have problems displaying HTML formatted inbound email. HTML emails display as plain-text. According to the following post - you have to "Disable certs." I decided to downgrade to AVG Free 7.5 and deal with this later. Just thought I'd pass this on since I found the problem a real pain and difficult to find good info on....
Add-ins to make Outlook.exe process keep running after Outlook
David
2 / 5 26 Jun
Thanks Ken. I posted the question on vsto Forums. -- David "Ken Slovak - [MVP - Outlook]" wrote: > Hmm, I haven't done much with VSTO 3.0 addins but I haven't seen that in my > limited experience with them. I certainly haven't seen that with VSTO 2.5 SE > addins at all. > > Are you running any other addins in Outlook on that machine? Does this > problem occur on other...
get contactitem from addressentry
sd
4 / 4 26 Jun
Thanks Ken & Dimitry!! -sd...
Outlook/Exchange dev positions in Chicago
Interwoven, Inc.
0 / 1 23 Jun
Interwoven, Inc., a leader in the enterprise software solutions is looking for a two senior developers to join its Chicago Outlook/Exchange development team. Interested applicants, please follow this link to post a resume: http://hostedjobs.openhire.com/epostings/jobs/submit....
Change subject of recurrence appointments without breaking serie
Dmitry Streblechenko
1 / 2 23 Jun
Of course, modify the master recurrence. If your code is accessing an instance of a recurring activituy, the Parent property will point to the master AppoitmentItem, but than MAPIFolder. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Mk23" <Mk23@discussions.microsoft.com> wrote in message...
word opening outlook e-mail
Ken Slovak - [MVP - O...
6 / 6 23 Jun
If you save an email that has attachments as an MSG file when it's opened by Outlook the attachments are there. You do lose some information from the MSG format as certain properties are lost and some are changed such as some dates. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders,...
Set AppointmentItem.Sensitivity in Recurrence
Mk23
1 / 1 20 Jun
Hi Is it possible to set the sensitivity for an appointment collection in a recurrence? I tried to do this in my application, without any success. There will be thrown a COMException anytime i try to set the sensitivity on an item. Thanks for any help...
Inspector wrapper and Inspector close not fireing
Ken Slovak - [MVP - O...
2 / 2 20 Jun
That call will fire an exception in later versions of Outlook. Is the Inspector window staying open in the cases where item.Close fires but inspector.Close doesn't fire? -- 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 <marcus....
Outlook Contacts Telephone numbers need resetting
Ken Slovak - [MVP - O...
4 / 4 20 Jun
You could try code that iterates the contacts folder items and reads each of the 17 phone numbers per contact and then strips out all spaces and dashes and writes back the massaged number to that phone field. Then save each item. That should force Outlook to format each number. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007....
BeforeItemMove firing twice
Manish
1 / 1 18 Jun
Im registering for MAPIFolderEvents_12_BeforeItemMoveEventHandler events on Calendar Folder. When an appointment is deleted, or shift-deleted, my handler does get called. However, if I shift-delete an appointment (ie MoveTo folder in the callback is null), and I cancel the event .. ie public void CbkBefMov(object Item, Outlook.MAPIFolder MoveTo, ref bool Cancel) { if...
Trying to open the new mailItem inspector form within a custom
Ken Slovak - [MVP - O...
1 / 6 17 Jun
I don't see where that code is creating the appointment item, but what line triggers the dialog box open message? Is the thisApp object valid when you get it? Have you looked at it in debug mode? If worst came to worst you could always just set your Outlook.Application object before calling Show on your form from wherever the form is called. Also, if you have a NameSpace object...
Business Contact Manager
Ken Slovak - [MVP - O...
2 / 2 17 Jun
You'll probably get better and more informed answers in a BCM group. This is an Outlook programming group. -- 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 "Owen" <bbvoffice@bbvinc.com> wrote in message news:u$vSzG%23zIHA....
change sent timestamp in Outlook
Dmitry Streblechenko
1 / 2 16 Jun
On the low level, you would need to change the value of the PR_CLIENT_SUBMIT_TIME MAPI property using CDO 1.21/ Redemption / Extended MAPI. On the Outlook Object Model level, MailItem.SentOn propety is read-only. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Richard Brice" <richard.brice@vega.co.uk> wrote in message...
thread-index
Dmitry Streblechenko
2 / 2 16 Jun
Thread-Index MIME header is encoded using Base 64 encoding. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Koen Verwimp" <KoenVerwimp@discussions.microsoft.com> wrote in message news:C3A9D00D-3B5D-4024-A9A3-184F38C40B38@microsoft.com... > Hey, > > How can I convert a thread-index (string form in header) to a hexadecimal...
Username & Password
Volomist
1 / 1 16 Jun
Is it possible to have the Username and Password of the logged in user from Outlook 2003, in VB.Net?...
Outlook 2003 - Out Of Office
Volomist
3 / 3 16 Jun
Ok, thanks Ken! "Ken Slovak - [MVP - Outlook]" wrote: > Outlook 2003 doesn't expose what you need to do that with its object model. > You would need to use Redemption or CDO 1.21 or some other API that does > expose that information. > > What you want is a hidden message in the Inbox with a MessageClass of > "IPM.Note.Rules.OofTemplate.Microsoft". > > -- > Ken Slovak > [MVP...
can this be done with an add-in
Michael Bauer [MVP - ...
2 / 2 16 Jun
...
Outlook Add-In Loading Problems
Ken Slovak - [MVP - O...
1 / 6 13 Jun
Misha's blog posts were what I was thinking of. There are comments below the blog posts about how all that he said relates to Outlook 2003. Make sure to read everything and follow it very closely. -- Ken Slovak [MVP - Outlook] http://www.slovaktech.com Author: Professional Programming Outlook 2007. Reminder Manager, Extended Reminders, Attachment Options. http://www.slovaktech....
Outlook 2003 Synchronizing
Tom
1 / 1 13 Jun
Hello, I posted this in the message group also. I have developed a message store and every thing works fine. But occasionally when Outlook is synchronizing our message store becomes buggy. One example is that if our store is running in an exchange environment and Outlook is downloading an extremely large file requests will stack up in the details window. Once in a rare occasion...
Multiple Outlook Add-in problem
Ken Slovak - [MVP - O...
1 / 2 12 Jun
If you don't set position the control will be added at the end of the toolbar no matter how many other addins add their controls to that toolbar. -- 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 "nf" <Nazfaz@gmail.com> wrote in...
Sending Templates Automatically on a schedule
Sue Mosher [MVP-Outlook]
2 / 2 12 Jun
Please clarify what you're trying to do. A template is only a UI layout; it contains no data. It's hard to imagine a scenario where you'd want to send a template to someone more than once. In the meantime, you might want to look at the code sample at http://www.vboffice.net/sample.html?mnu=2&pub=6&smp=10&cmd=showitem&lang=en, which shows how to use a recurring task to schedule a repeated...
Connector stopped working.
SChiarello
9 / 9 11 Jun
To all - I just had the same problem - Outlook Connector was working perfectly for nine months and then one day I couldn't get it to communicate with hotmail - I got the Sync error message like people above. I tried and tried to fix it (and I'm pretty computer illiterate). I just added the hotmail account again - and it worked - after like six hours of downloading everything to...
outlook cache
Dmitry Streblechenko
0 / 2 11 Jun
I don't think there is anything you can do... -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Koen Verwimp" <KoenVerwimp@discussions.microsoft.com> wrote in message news:8124D154-2207-4CC9-84A4-C049155073E6@microsoft.com... > Hey, > > I have an IMAP-server in Outlook. When I drop a email in my IMAP-server, > the >...
MarkForDownload, RemoteStatus, DownloadState
Koen Verwimp
1 / 1 11 Jun
Hey, Is there a way for redownloading a message (IMAP server). MarkForDownload? RemoteStatus? DownloadState? When i try with MarkForDownload Outlook said: "This item is already downloaded; it cannot be marked for download. You don't have appropriate permission to perform this operation" Thank you, Koen...
Outlook Add-In performance issues?
Michael Bauer [MVP - ...
2 / 2 10 Jun
...
Where is the bug ?
af2604
5 / 5 09 Jun
Dmitry Streblechenko ha scritto: .... You > could hack it, but the entry id format is not documented and is subject to > change in any version. > Thank you very very much... this is simply GREAT...
Detect outlook is running (and not shutting down)
Ken Slovak - [MVP - O...
2 / 2 09 Jun
I don't know of any way to do that. You probably will need to use exception handling for that, possibly with periodic checks to see if the Outlook window is still there. -- 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...
Button to send optional a BCC to myself
Michael Bauer [MVP - ...
2 / 2 08 Jun
Am Sat, 7 Jun 2008 03:56:33 -0400 schrieb Sander: 1) If there's for sure no other BCC recipient, the code looks like this: Public Sub WhatEver() Dim Mail as Outlook.MailItem Dim Ins as Outlook.Inspector Set Ins=Application.ActiveInspector If TypeOf Ins.CurrentItem is Outlook.MaillItem Then Set Mail=Ins.CurrentItem Mail.Bcc="your address" Endif End Sub If...
Project Web Access Add-in
KeithMeister
1 / 1 05 Jun
I have been using this successfully for a while. However, when I try to import new assignments now, it says AN UNEXPECTED ERROR OCCURED. It suggests I reload the COM ADD-IN. I've done this several times without any luck. I'm using Outlook 2003 SP3...
How to block moving of personal folders under Outlook 2007
Sue Mosher [MVP-Outlook]
1 / 4 05 Jun
BeforeFolderMove is an event, not a property. You would need to build an add-in that instantiates the Folder object you want to protect and then subscribe to its BeforeFolderMove event and write code for that event to cancel it if it occurs under conditions where you do not want the move to take place. The details would, of course, depend on what programming language and add-in platform you're...
Send email with MAPI doesn't save mails in sent items
Dmitry Streblechenko
4 / 4 05 Jun
Oh, sorry - I missed the OE part. This is an Outlook group, OE is a totally separate beast. -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Giorgio Vanoni" <g.vanoni@synweb.info> wrote in message news:eJ7nAKuxIHA.4772@TK2MSFTNGP03.phx.gbl... > Dmitry Streblechenko ha scritto: >> Did you set the PR_SENTMAIL_ENTRYID...
Problem with oracle database connection using Oracle Instant Clien
PIYUSH
1 / 1 05 Jun
I am developing an outlook add in programming using Visual Studio C#.net 2003. In my application my requirement is to connect to the Oracle database. In my development machine Oracle database is installed, so here its working fine, but I need to deploy my application to the machine where Oracle has not been installed, so I tried to deploy Oracle instant client to the client machine,...
"Minimise to toolbar"
GRV
0 / 5 05 Jun
Michael I have used Outlook for years and never knew that solution...you can teach an old dog new tricks! :( It isn't exactly what I was looking for, I would have preferred the toolbar like WMP but this is an excellent current solution, thank you very much....
MAPI question about extra info in email and smtp address
Dmitry Streblechenko
2 / 7 03 Jun
The tags look fine to me. Can you ask your user to install OutlookSpy? Or at least save the message as an MSG file and zip it? -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Aamir" <a2zbuddy@gmail.com> wrote in message news:42c96fb6-6206-465c-b67e-7234cfc66c38@t12g2000prg.googlegroups.com... > Hi Dmitry, > >...
Store.FilePath problem
af2604
4 / 4 03 Jun
af2604 ha scritto: > Sue Mosher [MVP-Outlook] ha scritto: >> It looks to me like you're making this too hard. Your code gets the >> IDs from the current folder, then gets the same current folder again >> using GetFolderFromID. Why not cut out the extra steps and just use: >> >> pippo = CurExplorer.CurrentFolder.Items >> I've never heard of or seen a blank StoreID for any store....
Preview Window not displaying
Tom
5 / 5 03 Jun
Hi Sue, To clarify the issue, we have a custom message store which has a custom message class (IPM.Note.CustomMessage for example). We have a CFG file the brings up our custom form server to handle the open/reply message form which works without any issue. The problem is that the preview window does not display. Obviously there is either a MAPI property that we are not supporting...
Outlook 2003 favorites
Dmitry Streblechenko
0 / 6 03 Jun
Ah, sorry - I guess this really shows that I do not use Favorites (not PF favorites) at all :-) -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Sue Mosher [MVP-Outlook]" <suemvp@outlookcode.com> wrote in message news:uK2PbwNxIHA.3336@TK2MSFTNGP03.phx.gbl... That would only work if it's a public folder, though, and does...
Selected Email Information
Barkster
0 / 8 03 Jun
Wow, thanks again for the great info. BTW, I ordered your book :-) Thanks!...
Outlook 2003 Folder Context Menu built-in items
Paul-Jan Pauptit
0 / 1 03 Jun
I am trying to adapt the Outlook 2003 Folder Context Menu within the command bars update event. Basically, what I do is: - find "Folder Context Menu" command bar - remove msoBarNoCustomize from the protection property - add temporary menu items / etc - turn msoBarNoCustomize back on This works fine when I'm adding custom menu items, however when I try to change the caption on, or...
Outlook Connector Not Displaying Text in Meeting Request Replies
Rich K
0 / 1 02 Jun
Has anyone noticed that the body of the message text in downloaded replies to the Meeting Requests using Outlook Connector are blank? When I go online to view the message text in the same replies to the Meeting Requests, the text is visable....
is it possible to have a check mark in front of menu button? How?
Andrei Smolin [Add-in...
0 / 2 02 Jun
Hi Jason, See the State property of the CommandBarButton class. Regards from Belarus (GMT+2), Andrei Smolin Add-in Express Team Leader www.add-in-express.com "Jason Wang" <JasonWang@discussions.microsoft.com> wrote in message news:10DE868E-1ABA-42A4-86AE-17DCEB9F1847@microsoft.com... >...
Creating Custom Toolbars
Josh Schmitz
0 / 1 02 Jun
Hi all, This is my first time ever dealing with Outlook, and as I am only a Soph. in College I have very limited experience in general. I am trying to make a cutsom toolbar for when someone opens Outlook. I have code that will make the toolbar and do what i want(not an add-in though), and to share this code I have to export -> import. I am trying to use Visual Studio 2008 (VB) and...
MAPI Property 0x10960003
Dmitry Streblechenko
0 / 4 02 Jun
Not me, this time the credit goes to MS for a change. The docs from http://msdn.microsoft.com/en-us/library/cc307725(EXCHG.80).aspx really rock :-) -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Omegachimp" <Omegachimp@discussions.microsoft.com> wrote in message news:5A284D3F-5C14-49B3-A503-176670FAA2D4@microsoft.com......
Catch the “Find Now” corresponding event
Pavel Rosoi
0 / 1 02 Jun
Hi, For Outlook 2003, using VSTO, I want to: 1) Catch the “Find Now” corresponding event, 2) Get the search object (string) 3) Be able to add my own search results into the explorer view (because I’ll do my own search into an external database). Could someone give me an advice about how to accomplish these, please?...
Changes to Subject in MailItem not reflected
Sue Mosher [MVP-Outlook]
0 / 3 02 Jun
Try calling Save first. The changes made in the UI are committed if the user leaves the control or saves the item. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook 2007 Programming: Jumpstart for Power Users and Administrators http://www.outlookcode.com/article.aspx?id=54 "DavidReck" <DavidReck@discussions.microsoft.com> wrote in message...
All times are in (US) Eastern Daylight Time (GMT -4:00)