| Thread | Last Author | Messages read/total | Date |
|---|
| Preview Pane and Inspector Events |
Ken Slovak - [MVP - O... |
0 / 2 |
07 Jan |
| The item.Read event will fire when an item is displayed in the preview pane.
In addition, in Outlook 2007 you can use the Application.ItemLoad event to
know when an item is loaded by Outlook into its memory cache. That even can
fire when an item is previewed and also when an item is opened in an
Inspector.
You can also use the ActiveExplorer.SelectionChange event. When that event... |
| Determining if the Digitally Sign button is depressed |
Ken Slovak - [MVP - O... |
0 / 5 |
06 Jan |
| I know of no way to access anything much in the Envelope object. Some MAPI
property being changed or set if the button is depressed might not be true
unless the item is saved. I'd think then the MessageClass would be changed,
but I don't work with signed messages very often.
It's possible that MS has internal ways to get at that information that
aren't exposed to the outside world,... |
| How to compare two inspector objects? |
xwjbs |
0 / 5 |
05 Jan |
| I try to use settimer(),but it can't work either. I find that the __vfptr
member stay same all the time. Can i use it(i can't get it)? Would you like
to give me other advice? How to check it in a one thread? Thank you!
"Jeff" wrote:
> Hi
>
> As a quick thought, are your Inspector objects marshalled to different
> threads / appartments? If so, you'll not be able to check the... |
| Push BCM contacts to public folders |
Ken Slovak - [MVP - O... |
0 / 4 |
04 Jan |
| Accessing SQL Server is the same whether it's the desktop version (Express
or MSDE) or the server enterprise version.
You can use a timer that fires at intervals and check the system time in the
timer event and run the synch at a specified time, or at specified
intervals, or you can use any other method of scheduling that you want.
--
Ken Slovak
[MVP - Outlook]
http://www.... |
| Reply saved message |
Sue Mosher [MVP-Outlook] |
0 / 7 |
04 Jan |
| Since you have Outlook 2007, you can import the .msg file using the Namespace.OpenSharedItem method. The resulting item should have its original sender information intact, so you can reply to it.
--
Sue Mosher, Outlook MVP
Author of Microsoft Outlook 2007 Programming:
Jumpstart for Power Users and Administrators
http://www.outlookcode.com/article.aspx?id=54
"Misha"... |
| Choose Use Office word 2003 to edit email messages leads to fa |
Mike.N.Roy@gmail.com |
0 / 4 |
03 Jan |
| But is it possible to read the existing tool bars controls in a
WordMail Inspector?... |
| Compatability question |
Nad Af |
0 / 2 |
02 Jan |
| Now I downloaded and referenced MSOUTL9.OLB (for Outlook 2000) on my machine.
But my PC has Outlook 2003. The AddIn compiled and run fine!
"Dmitry Streblechenko" wrote:
> Depends on what exactly you do.
> As a general rule of thumb, you must reference (and hence develop on a
> machine with) the lowest suppred version of Outlook; 2000 in your case.
>
> Dmitry Streblechenko (MVP)... |
| Add items into a calendar (Outlook 2007) |
Ken Slovak - [MVP - O... |
0 / 7 |
31 Dec 2007 |
| I don't know what you're looking at but I see reminder and task properties
added to the item. Among them are StartDate, DueDate, Complete, Status,
ReminderSet, FlagDueBy and ReminderTime.
When those properties are added I see the item in the To-Do Bar. Isn't that
what you said you wanted?
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming... |
| Save Prompt comes though nothing changed |
Ken Slovak - [MVP - O... |
0 / 2 |
28 Dec 2007 |
| Obviously something is changing. I'd be inclined to suspect filling the
combo's is the culprit but that you'd have to verify by stepping your code
and seeing when the item.Saved property becomes False.
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007
Reminder Manager, Extended Reminders, Attachment Options
http://www.slovaktech.... |
| [BOUNTY] Reminders for my reminders |
Jay Levitt |
0 / 7 |
28 Dec 2007 |
| On Thu, 27 Dec 2007 21:55:41 -0500, Jay Levitt wrote:
> If there's a "Hello World" that does..
> something, anything.. with that, I could turn into a process (launched by
> the existing system scheduler) once a day that scans the Outlook Calendar,
> and turns everything into a line in a text file.
Hey, I'll answer my own question and go one even better than Hello World:... |
| Unable to Delete Folders from "Deleted Item" Folder |
abhi4u1947@gmail.com |
0 / 1 |
28 Dec 2007 |
| Hi, all
I'm trying to delete folders from the "Deleted Items" folder. I'm
using the below snippet. The "Deleted Items" folder also contains some
custom folders, which I'm not able to clear.
I am working with VSTO-SE in vb.net With Outlook 2007.
Plz reply me the solution.
*********************** Error Details ****************************
System.Runtime.InteropServices.... |
| Redemption and Reg-Free COM, how-to? |
Dmitry Streblechenko |
0 / 5 |
28 Dec 2007 |
| The problem is that when Redemption.dll is customized, only the registry
names of the Redemption classes are changed, but not the underlying type
library (embedded as a resource in the dll).
When VS tries to locate the registry keys, it looks for the original class
names stored in the type library, not the modified class names.
If you are using registry-free COM, there is absolutely no... |
| why appointment.LastModificationTime isn't changed? |
Dmitry Streblechenko |
0 / 4 |
27 Dec 2007 |
| Same answer:
Try to release the object by setting it to Nothing in VB (or null in .Net
with a subsequent call to Marshal.ReleaseCOMObject), then reopen it using
Namespace,GetItemFromID.
Since you are using .Net, the COM objects are released later by the GC.
Avoid using multiple dot notation, release all object explicitly using
Marshal.ReleaseCOMObject, call GC.Collect. Then reopen... |
| How to Delete Folders from Outlook 2007 "Deleted Items" Folder. |
abhi4u1947@gmail.com |
0 / 1 |
27 Dec 2007 |
| I'm trying to empty the "Deleted Items" folder. I'm using the below
snippet to empty. I'm able to delete all the items successively. The
"Deleted Items" folder also contains some custom folders, which I'm
not able to clear.
I'm getting the below error:
"{System.Runtime.InteropServices.COMException (0x86220009): Unable to
delete this folder. Right-click the folder, and then click... |
| Outlook 2007 AttachmentContextMenuDisplay(CommandBar, Attachments) |
kul |
0 / 5 |
25 Dec 2007 |
| Thanks alot, it works wonderfull
"kul" wrote:
> http://msdn2.microsoft.com/en-us/library/bb175107.aspx
>
> How can I convert this VBA code to C# or VB.NET by using Visual Studio 2005
> Professional edition, shared add-in?
>
> How can I define AttachmentContextMenuDisplay(CommandBar, Attachments) event
> in OnStartupComplete(...) part or where ?
>
> VBA Code:
>
>... |
| Addin Loading Fails |
j |
0 / 2 |
25 Dec 2007 |
| Another chance .......
Any ideas, suggestions???... |
| how can i insert date in the signal? |
Ken Slovak - [MVP - O... |
0 / 2 |
22 Dec 2007 |
| See http://www.outlookcode.com/d/code/stampdate.htm
--
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
"chelsea" <chelsea@gmail.com> wrote in message
news:OnohD1IRIHA.1184@TK2MSFTNGP04.phx.gbl...
> hi,
> how can i automatic insert... |
| New menu on OL2003 doesn't work when Word is used to edit msg |
Ken Slovak - [MVP - O... |
0 / 6 |
22 Dec 2007 |
| That's a shell of an Inspector wrapper, it doesn't do any of the heavy
lifting of actually doing anything useful with the menu (or even create it
for WordMail), and work best the way it creates UI with the Outlook editor
and earlier versions of Outlook 2003 and earlier.
Things changed later on, that sample really needs updating and filling in
for more recent best practices. When I... |
| modify contact when chages are not made to form region |
Ken Slovak - [MVP - O... |
0 / 4 |
21 Dec 2007 |
| The way to handle multiple open Inspectors (or multiple open Explorers) is
with a wrapper class and collection of wrapper classes. Each class handles
events for its own Inspector and therefore doesn't interfere with handling
any other Inspector.
I have sample VS2005 projects for shared and VSTO addins for Outlook 2007
posted on my Web site that implement Inspector and Explorer... |
| can not open an excel attach from outlook |
Gina Proanio |
0 / 1 |
20 Dec 2007 |
| can not open an excel attach from outlook why??... |
| VSTO Add-In stopped working |
thomas.schager@gmail.com |
0 / 5 |
20 Dec 2007 |
| I just solved my problem, finally!
My addin had no problems with addin security, but other problems on
startup. There was obviously an IOException thrown due to problems
with the configuration XML. The general problem was, that Outlook just
disabled the addin on failures, but does not show any error messages.
As in http://help.lockergnome.... |
| Outlook 2007 crash |
Dmitry Streblechenko |
0 / 8 |
19 Dec 2007 |
| I can only suggest that you rewrite your ECE as a COM add-in - installation
will be a lot easier, and I suspect that ECE saupport will be at least
limited in the next version of Outlook.
Dmitry Streblechenko (MVP)
http://www.dimastr.com/
OutlookSpy - Outlook, CDO
and MAPI Developer Tool
"Zuber" <Zuber@discussions.microsoft.com> wrote in message... |
| Ken, Sue, Dmitry, any ideas? (Addin Settings1.Settings) |
Ken Slovak - [MVP - O... |
0 / 2 |
19 Dec 2007 |
| I have no idea.
Usually applicationName.exe.config or applicationName.dll.config is in the
installation folder. Where it is for your code I'm not sure.
Sue or Dmitry might know.
Usually if none of us answer a post it's because we don't understand it or
haven't a clue :)
--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007... |
| Getting "Other calendars" list |
Ken Slovak - [MVP - O... |
0 / 3 |
19 Dec 2007 |
| For Outlook 2000, 2002 and 2003 you'd have to do something like getting the
current folder from ActiveExplorer().CurrentFolder. You can then get the
StoreID of that folder and use that to identify the calendar. The StoreID,
if you look at it as text in a tool such as OutlookSpy actually has the name
of the mailbox of the shared calendar as an Exchange DN. That's in addition
to the... |
| set the default outlook address book for all users |
scubaal |
0 / 1 |
19 Dec 2007 |
| I know I have done this before a few years back in another site - but
I cant remember how.
We need to set the default lookup address book for all our OL2k3 users
to specific lookup order. I know they could each do this manually but
we have 2300+ users and the support overhead would be huge.
We want to make a custom defined AB we have created the First place
that is searched, rather than... |
| Add-in C# programming difficulty level for a student? |
Ken Slovak - [MVP - O... |
0 / 2 |
18 Dec 2007 |
| I think unless you get an experienced Outlook developer then good luck in
trying to get everything working correctly or on time or on budget.
--
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
"Jonathan" <none@none.com> wrote in... |
| Outlook Connector |
jacoby |
0 / 2 |
18 Dec 2007 |
| Having the same problem. All new mail in the last week and a half show the sender as "CN=<username>/O=/OU="
I have tried reinstalling both the lotus and outlook clients, wiping out ini file, and changing every preference and setting possible. Then I did a fresh install of all components on another system using only the same id file...and again the problem was there. So I agree it's a... |
| Settings class, where are values stored? |
Mike |
0 / 1 |
18 Dec 2007 |
| I have an Outlook add-in that is working great. I've added a
Settings1.settings file to the project (a Visual Studio 2005 C# project), and
run a couple tests loading, displaying, and saving settings, everything works
great.
My question is, where in the world do these settings get saved to? When I
run Outlook and my addin runs, i can display the values from the settings
class, but... |
| Christmas Shopping Deals |
ryv1922r |
0 / 1 |
14 Dec 2007 |
| I am always in search of the best deals online. Check out
http://www.christmasplayland.com that I came across.Great onestop
Christmas marketplace for entertainment and travel.... |
| Ribbon : What is the IdMso to catch "Message" with Outlook 2007 ? |
sylvain |
0 / 3 |
13 Dec 2007 |
| ... |
| Accessing multiple MS-Outlook profiles with C# .net |
Ken Slovak - [MVP - O... |
0 / 4 |
13 Dec 2007 |
| You'd have to set the Mail applet in the Control Panel to prompt for a
profile on Outlook start and be there to select each profile in turn,
exiting and restarting Outlook each time you wanted to use a different
profile.
To be able to log into profiles one after another using a profile logon
you'd need to be using CDO 1.21 or Extended MAPI or a MAPI wrapper such as
Redemption (www.... |
| The following recipient(s) could not be reached: Distrib List |
F. H. Muffman |
0 / 4 |
11 Dec 2007 |
| "Marathon" <jsssbs@hotmail.com> wrote in message
news:e74OjtFPIHA.6036@TK2MSFTNGP03.phx.gbl...
>>>I have now broken down the distribution list into 5 lists of less than 30
>>>members in each list and still get this:
>>>
>>> The following recipient(s) could not be reached:
>>>
>>> <Recipient email> on 12/11/2007 7:16 PM
>>>
>>> 452 4.1.1 Too many recipients for message
>>>
>>> Any... |
| AddIn loading takse too much time after PC Restart |
Ken Slovak - [MVP - O... |
0 / 4 |
11 Dec 2007 |
| No ideas, no suggestions, that's the way it is if you're using managed code.
Want a faster startup? Use unmanaged code instead.
--
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
"j" <Evgeny.Br@gmail.com> wrote in message... |
| Capture Outlook 2007 Item Send Event |
apondu |
0 / 1 |
11 Dec 2007 |
| Hi,
My name is Govardhan, i work on building outlook addins using shared-
addins of Dotnet. I had previously written a addin for outlook 2003.
Now i was planning to write a outlook addin for office 2007.
In this outlook addin i wanted to capture the Send Event when ever a
user clicks on the send button on the compose screen. I had done this
in outlook 2003 but when i tried to capture... |
| Trapping message move operations |
xyz250 |
0 / 3 |
10 Dec 2007 |
| Thanks for your response Ken. I don't think I can take the approach
of handling the MAPIFolder.Items.ItemAdd event because of the sheer
number of potential folders the user could move the message to. I
kind of like the idea of disabling the buttons on the toolbar and
subsituting my own, but like you said, there are other ways to copy/
move messages. It looks like I will not be able to... |
| Add-Ins that work with IMAP |
Ken Slovak - [MVP - O... |
0 / 2 |
10 Dec 2007 |
| It's IMAP itself that's the problem. With all messages stored in the server
you are at the mercy of whatever properties IMAP specifies and what the
server will allow. Most of my addins don't work with IMAP for that reason.
About the only workarounds are to abandon IMAP for POP or to download the
items from the server to a local PST file where you can access items
normally.
--
Ken... |
| Events no longer firing |
Muhammad Ali Shah |
0 / 2 |
08 Dec 2007 |
| OK; I got it. VBA isn't loading. Setting the Macro security to Medium
prompted me whether I want to run macros or not. If I say Yes,
everything works fine.
<MPG.21c516e3541f1be0989680@news.sunsite.dk>, muhammad.ali@gmail.com
says...
> The code worked fine "till" I restarted outlook. It's weird that it's no
> longer working. Can anyone give me some ideas? I am not using Exchange
>... |
| Edit Compose Page & Edit Read Page |
Ken Slovak - [MVP - O... |
0 / 2 |
07 Dec 2007 |
| If you want access to values that are in a different page mode then you need
to bind those values to UserProperties and access the values from the
UserProperties collection.
--
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
"Jason... |
| lalonde |
Mike and Jen |
0 / 1 |
07 Dec 2007 |
| Wanderer Tax Solutions
702 Barrydowne Road - Unit 9
Sudbury, ON
P3A 3T5
705 562 2399
Barrydowne Road Sudbury, Ontario. Second Location.
1630 Agincourt Avenue Sudbury, ON.
wanderer rampar wdr c64 commodore 64. jason john lalonde
michael lalonde
mike lalonde
sudbury
wanderer tax solutions
3665 Arista Way
These test messages are purposely filled with inaccurate and... |
| Error installing PIA |
Ronnie |
0 / 9 |
06 Dec 2007 |
| On Dec 6, 3:11 pm, "Ken Slovak - [MVP - Outlook]" <kenslo...@mvps.org>
wrote:
> Any SKU of Outlook 2007 should be OK, for Outlook 2003 you need Office 2003
> Professional or higher.
>
> Read the deployment articles, there's a lot there so make sure you follow
> each step very carefully. The first custom action is entered all on one line
> with a space separating each line in the article,... |
| Sync 2 calendars |
Vaelek |
0 / 4 |
06 Dec 2007 |
| Oh I see. I misread your original posting. I'm sure there's a way to do it
but I have no experience with the server side of things. I hope someone else
has some insight as I would be interested to know if something like that is
possible on the server side as well.
Best of luck!
-Vaelek
"Kumpel" wrote:
> That looks great, but is it possible to run it automaticaly on the... |
| problem with VISTA |
Vaelek |
0 / 2 |
06 Dec 2007 |
| Whether your account is administrator does not make you "Administrator" in
Vista's eyes. I've run into a number of permissions issues when working with
both the registry or modifying anything under \Program Files. I think you
need to elevate the priviledges in your code to get true Admin level rights.
Though I am not sure how to go about that.
"sd" wrote:
> Hi All,
> I have... |
| 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...
>... |